public PatientController(PatientService patientService, AccountService accountService) { _patientService = patientService; _accountService = accountService; }
public DoctorController(DoctorService doctorService, PatientService patientService) { _doctorService = doctorService; _patientService = patientService; }