Ejemplo n.º 1
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;
 }
Ejemplo n.º 2
0
 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;
 }
Ejemplo n.º 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;
 }