public bool AgregarEntrevista(Entrevista Entrevista)
 {
     using (SQLContexto contexto = new SQLContexto())
     {
         EntrevistaRepo entrevistaRepo = new EntrevistaRepo(contexto);
         return(entrevistaRepo.Insertar(Entrevista));
     }
 }