Exemple #1
0
 public BillingController(IBillingApp billingApp, IPatientApp patientApp, IUsersService usersService, IDrugsApp drugsApp, IMaterialApp materialApp, ITreatmentApp treatmentApp)
 {
     _billingApp   = billingApp;
     _patientApp   = patientApp;
     _usersService = usersService;
     _drugsApp     = drugsApp;
     _materialApp  = materialApp;
     _treatmentApp = treatmentApp;
 }
 public OrdersController(IOrdersApp ordersApp, IPatientApp patientApp, IUsersService usersService, IDrugsApp drugsApp, IMaterialApp materialApp, ITreatmentApp treatmentApp, IBillingApp billingApp, IStorageApp storageApp, IOrdersExecLogApp ordersExecLogApp)
 {
     _ordersApp        = ordersApp;
     _patientApp       = patientApp;
     _usersService     = usersService;
     _drugsApp         = drugsApp;
     _materialApp      = materialApp;
     _treatmentApp     = treatmentApp;
     _billingApp       = billingApp;
     _storageApp       = storageApp;
     _ordersExecLogApp = ordersExecLogApp;
 }
 public PatVisitController(IPatientApp patientApp, IPatVisitApp patVisitApp, IOrdersExecLogApp ordersExecLogApp, IOrdersApp ordersApp, IDrugsApp drugsApp, IMaterialApp materialApp, IUsersService usersService, IDialysisMachineApp dialysisMachineApp, IPunctureApp punctureApp, IDialysisObservationApp dialysisObservationApp, IConclusionTemplateApp conclusionTemplateApp)
 {
     _patientApp             = patientApp;
     _patVisitApp            = patVisitApp;
     _ordersExecLogApp       = ordersExecLogApp;
     _ordersApp              = ordersApp;
     _drugsApp               = drugsApp;
     _materialApp            = materialApp;
     _usersService           = usersService;
     _dialysisMachineApp     = dialysisMachineApp;
     _punctureApp            = punctureApp;
     _dialysisObservationApp = dialysisObservationApp;
     _conclusionTemplateApp  = conclusionTemplateApp;
 }
Exemple #4
0
 public SettingController(
     ISettingApp settingApp,
     ISettingModelApp settingModelApp,
     IMaterialApp materialApp,
     IDrugsApp drugsApp,
     IUsersService userApp,
     IPatientApp patientApp,
     IMapper mapper
     )
 {
     _settingApp      = settingApp;
     _settingModelApp = settingModelApp;
     _materialApp     = materialApp;
     _drugsApp        = drugsApp;
     _userApp         = userApp;
     _patientApp      = patientApp;
     _mapper          = mapper;
 }
 public StorageManageController(
     IImportMasterApp importMasterApp,
     IImportDetailApp importDetailApp,
     IStorageApp storageApp,
     IMapper mapper,
     IUsersService usersService,
     IDrugsApp drugsApp,
     IMaterialApp materialApp
     )
 {
     _importMasterApp = importMasterApp;
     _importDetailApp = importDetailApp;
     _storageApp      = storageApp;
     _mapper          = mapper;
     _usersService    = usersService;
     _drugsApp        = drugsApp;
     _materialApp     = materialApp;
 }
 public OrdersController(
     IOrdersApp ordersApp,
     IMapper mapper,
     IPatientApp patientApp,
     IDrugsApp drugsApp,
     IUsersService usersService,
     IBillingApp billingApp,
     ITreatmentApp treatmentApp,
     IStorageApp storageApp,
     IHubContext <HubTChat> hubContext)
 {
     _ordersApp    = ordersApp;
     _mapper       = mapper;
     _patientApp   = patientApp;
     _drugsApp     = drugsApp;
     _usersService = usersService;
     _billingApp   = billingApp;
     _treatmentApp = treatmentApp;
     _storageApp   = storageApp;
     _hubContext   = hubContext;
     //_notify = notify;
 }
 public DrugsController(IDrugsApp drugsApp, IMapper mapper)
 {
     _drugsApp = drugsApp;
     _mapper   = mapper;
 }
Exemple #8
0
 public DialysisRecordController(IPatVisitApp patVisit, IDrugsApp drugsApp)
 {
     _patVisit = patVisit;
     _drugsApp = drugsApp;
 }
 public DrugsController(IDrugsApp drugsApp)
 {
     _drugsApp = drugsApp;
 }