Esempio n. 1
0
 public PatientService(
     IPatientStorage patientStorage,
     IIlnessStorage ilnessStorage,
     IMapper mapper)
 {
     _mapper         = mapper;
     _ilnessStorage  = ilnessStorage;
     _patientStorage = patientStorage;
 }
Esempio n. 2
0
 public AccountService(
     IAccountStorage accountStorage,
     IDoctorStorage doctorStorage,
     IPatientStorage patientStorage,
     IClinicStorage clinicStorage,
     IMapper mapper)
 {
     _mapper         = mapper;
     _accountStorage = accountStorage;
     _clinicStorage  = clinicStorage;
     _doctorStorage  = doctorStorage;
     _patientStorage = patientStorage;
 }