Esempio n. 1
0
        public ActionResult ConsultList()
        {
            var a = _patientsProblemPageForDoctorService.All()
                    .Include(x => x.PatientProfile)
                    .Include(x => x.DoctorProfileModel);

            return(View(a));
        }
Esempio n. 2
0
 public ActionResult PatientsProblemPageForDoctor(int patientId)
 {
     ViewBag.patientId = patientId;
     return(View(_patientProblemService.All().FirstOrDefault(x => x.PatintId == patientId)));
 }
Esempio n. 3
0
 public ActionResult ConsultList()
 {
     return(View(_patientsProblemPageForDoctorService.All().Include(x => x.DoctorProfileModel).ToList()));
 }