Esempio n. 1
0
 public new ActionResult Profile()
 {
     return(View(model: _doctorProfileService.Find(1)));
 }
Esempio n. 2
0
        public ActionResult DoctorProfile(int doctorId)
        {
            var doctor = _doctorService.Find(doctorId);

            return(View(doctor));
        }
Esempio n. 3
0
 public ActionResult DoctorProfile(int doctorId)
 {
     return(View(model: _doctorProfileService.Find(doctorId)));
 }