public ActionResult Edit(int?id) { ProfesorLOC profesorLoc = profesorRepository.traziProfesora(id); if (profesorLoc != null) { return(View("Edit", profesorLoc)); } else { return(HttpNotFound("404")); } }