Exemple #1
0
 public ActionResult Create(EXAMEN_PACIENTE examenPaciente)
 {
     Examen_PacienteBLL.Agregar(examenPaciente);
     return(View("~/Views/ExamenPaciente/Examen_Paciente.cshtml", examenPaciente));
 }
Exemple #2
0
        public ActionResult Editar(int id)
        {
            var examenPaciente = Examen_PacienteBLL.GetExamenPaciente(id);

            return(View("~/Views/ExamenPaciente/Editar.cshtml", examenPaciente));
        }
Exemple #3
0
        public JsonResult ExamPaciente()
        {
            var data = Examen_PacienteBLL.ListExPatient();

            return(Json(data, JsonRequestBehavior.AllowGet));
        }