예제 #1
0
        public async Task <IActionResult> Profile(int id)
        {
            var doctor = await _doctorRepository.DoctorProfileAsync(id);

            return(View(doctor));
        }