public ActionResult Create(EXAMEN_PACIENTE examenPaciente) { Examen_PacienteBLL.Agregar(examenPaciente); return(View("~/Views/ExamenPaciente/Examen_Paciente.cshtml", examenPaciente)); }
public ActionResult Editar(int id) { var examenPaciente = Examen_PacienteBLL.GetExamenPaciente(id); return(View("~/Views/ExamenPaciente/Editar.cshtml", examenPaciente)); }
public JsonResult ExamPaciente() { var data = Examen_PacienteBLL.ListExPatient(); return(Json(data, JsonRequestBehavior.AllowGet)); }