コード例 #1
0
 public new ActionResult Profile()
 {
     return(View(model: _doctorProfileService.Find(1)));
 }
コード例 #2
0
        public ActionResult DoctorProfile(int doctorId)
        {
            var doctor = _doctorService.Find(doctorId);

            return(View(doctor));
        }
コード例 #3
0
 public ActionResult DoctorProfile(int doctorId)
 {
     return(View(model: _doctorProfileService.Find(doctorId)));
 }