Пример #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;
 }
Пример #2
0
 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;
 }
Пример #3
0
 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;
 }
Пример #4
0
 public BillingController(IBillingApp billingApp, IMapper mapper, IPatientApp patientApp)
 {
     _billingApp = billingApp;
     _mapper     = mapper;
     _patientApp = patientApp;
 }