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