Ejemplo n.º 1
0
 public LabTestController(ISampleGettingService sampleGettingService, IPatientService patientService, IHospitalSuggestionService hospitalSuggestionService, IAppointmentService appointmentService, ILabTestingIndexService labTestingIndexService, ILabTestingService labTestingService, ILabTestService labTestService, ISampleService sampleService, ISampleGroupService sampleGroupService, ITokenService tokenService)
 {
     this._labTestService            = labTestService;
     this._appointmentService        = appointmentService;
     this._labTestingService         = labTestingService;
     this._labTestingIndexService    = labTestingIndexService;
     this._sampleService             = sampleService;
     this._sampleGettingService      = sampleGettingService;
     this._patientService            = patientService;
     this._sampleGroupService        = sampleGroupService;
     this._hospitalSuggestionService = hospitalSuggestionService;
     this._tokenService = tokenService;
 }
 public LabTestingApiController(ILabTestingService labTestingService)
 {
     this._labTestingService = labTestingService;
 }