예제 #1
0
 public PatientController(PatientService patientService, AccountService accountService)
 {
     _patientService = patientService;
     _accountService = accountService;
 }
예제 #2
0
파일: DoctorController.cs 프로젝트: x3r/AMS
 public DoctorController(DoctorService doctorService, PatientService patientService)
 {
     _doctorService = doctorService;
     _patientService = patientService;
 }