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