public ReservationController(DbContext.CHISEntitiesSqlServer db,
                              Services.ReservationService resSvr,
                              Services.WorkStationService stationSvr
                              ) : base(db)
 {
     _resSvr     = resSvr;
     _stationSvr = stationSvr;
 }
Пример #2
0
 public HealthorController(Services.ReservationService resSvr,
                           Services.WorkStationService stationSvr,
                           Services.DoctorService docrSvr,
                           Services.CustomerService cusSvr
                           ) //: base(db)
 {
     _resSvr     = resSvr;
     _stationSvr = stationSvr;
     _cusSvr     = cusSvr;
     _docrSvr    = docrSvr;
 }
Пример #3
0
 public HealthorController(DbContext.CHISEntitiesSqlServer db,
                           Services.ReservationService resSvr,
                           Services.WorkStationService stationSvr,
                           Services.DoctorService docrSvr,
                           Services.CustomerService cusSvr
                           ) : base(db)
 {
     _resSvr     = resSvr;
     _stationSvr = stationSvr;
     _cusSvr     = cusSvr;
     _docrSvr    = docrSvr;
 }
Пример #4
0
 public ReservateController(Services.ReservationService resSvr
                            , Services.WorkStationService stationSvr
                            , Services.DoctorService docrSvr
                            , Services.CustomerService cusSvr
                            , Services.WeChatService wechatSvr
                            ) //: base(db)
 {
     _resSvr     = resSvr;
     _stationSvr = stationSvr;
     _cusSvr     = cusSvr;
     _docrSvr    = docrSvr;
     _weChatSvr  = wechatSvr;
 }
Пример #5
0
 public HealthorInfo(DbContext.CHISEntitiesSqlServer db,
                     Services.ReservationService resSvr,
                     Services.WorkStationService stationSvr,
                     Services.DoctorService docrSvr,
                     Services.CustomerService cusSvr,
                     Services.DispensingService dispSvr
                     ) : base(db)
 {
     _resSvr     = resSvr;
     _stationSvr = stationSvr;
     _cusSvr     = cusSvr;
     _dispSvr    = dispSvr;
 }
Пример #6
0
 public NurseController(DbContext.CHISEntitiesSqlServer db
                        , Services.CustomerService cusSvr
                        , Services.WorkStationService staSvr
                        , Services.DoctorService docSvr
                        , Services.LoginService loginSvr
                        , Services.RxService rxSvr
                        ) : base(db)
 {
     _cusSvr   = cusSvr;
     _staSvr   = staSvr;
     _docSvr   = docSvr;
     _loginSvr = loginSvr;
     _rxSvr    = rxSvr;
 }
Пример #7
0
 public StationController(Services.ReservationService resSvr,
                          Services.WorkStationService stationSvr,
                          Services.DoctorService docrSvr,
                          Services.CustomerService cusSvr,
                          Services.DrugService drugSvr,
                          Services.DictService dicSvr
                          ) //: base(db)
 {
     _resSvr     = resSvr;
     _stationSvr = stationSvr;
     _cusSvr     = cusSvr;
     _docrSvr    = docrSvr;
     _drugSvr    = drugSvr;
     _dicSvr     = dicSvr;
 }
Пример #8
0
 public DispensingController(Services.ReservationService resSvr,
                             Services.WorkStationService stationSvr,
                             Services.DoctorService docrSvr,
                             Services.CustomerService cusSvr,
                             Services.DrugService drugSvr,
                             Services.DictService dicSvr
                             , Services.DispensingService dispSvr
                             , IMapper mapper
                             ) //: base(db)
 {
     _resSvr     = resSvr;
     _stationSvr = stationSvr;
     _cusSvr     = cusSvr;
     _docrSvr    = docrSvr;
     _drugSvr    = drugSvr;
     _dicSvr     = dicSvr;
     _dispSvr    = dispSvr;
     _mapper     = mapper;
 }
Пример #9
0
 public StationController(DbContext.CHISEntitiesSqlServer db
                          , Services.WorkStationService staSvr
                          ) : base(db)
 {
     _staSvr = staSvr;
 }