Exemple #1
0
 public DoctorController(IDoctorService doctorService, IMapper mapper, IPatientCardService patientCardService, ILoggerService <DoctorController> loggerService)
 {
     _doctorService      = doctorService;
     _mapper             = mapper;
     _patientCardService = patientCardService;
     _loggerService      = loggerService;
 }
Exemple #2
0
 public PatientCardController(IPatientCardService serv, IPatientService serv2)
 {
     patientCardService = serv;
     patientService     = serv2;
 }
Exemple #3
0
 public PatientController(IPatientService patientService, IPatientCardService patientCardService, IOptions <ServiceSettings> serviceSettings)
 {
     _patientService     = patientService;
     _patientCardService = patientCardService;
     _serviceSettings    = serviceSettings.Value;
 }
Exemple #4
0
 public PatientController(IMapper mapper, IPatientService patientService, IPatientCardService patientCardService)
 {
     _mapper             = mapper;
     _patientService     = patientService;
     _patientCardService = patientCardService;
 }