Example #1
0
 public PatientController(PatientService patientService, AccountService accountService)
 {
     _patientService = patientService;
     _accountService = accountService;
 }
Example #2
0
 public DoctorController(DoctorService doctorService, PatientService patientService)
 {
     _doctorService = doctorService;
     _patientService = patientService;
 }