public PatientController(IPatientService patientService,
                          IOtherService otherService,
                          ITestsService testService,
                          IDhlRegistrationService dhlRegistrationService,
                          IMaintenanceService maintenanceService)
 {
     this.patientService         = patientService;
     this.otherService           = otherService;
     this.testService            = testService;
     this.dhlRegistrationService = dhlRegistrationService;
     this.maintenanceService     = maintenanceService;
 }
 public MaintenanceController(IDhlRegistrationService dhlRegistrationService,
                              IMaintenanceService maintenanceService)
 {
     this.dhlRegistrationService = dhlRegistrationService;
     this.maintenanceService     = maintenanceService;
 }