Esempio n. 1
0
 public ActionResult PatientsConsult(PatientsProblemPageForDoctorModel model)
 {
     if (model != null)
     {
         //model.PatintId = 1;
         //model.DoctorId = 3;
         model.Status = "pending";
         _patientsProblemPageForDoctorService.Insert(model);
         return(RedirectToAction("PatientsConsult", "Patient"));
     }
     return(View(model: model));
 }