public ActionResult Index(string campo, string valor) { if (valor != "") { List <Profesor> profesores = ProfesorServicio.Buscar(campo, valor); return(View(profesores)); } return(Index()); }