Exemple #1
0
 public HomeController(DbContext.CHISEntitiesSqlServer db
                       , Services.LoginService loginSvr,
                       Services.WeChatService weChatSvr,
                       Services.DoctorService docSvr
                       ) : base(db)
 {
     _loginSvr = loginSvr; _weChatSvr = weChatSvr; _docSvr = docSvr;
 }
Exemple #2
0
 public TreatController(DbContext.CHISEntitiesSqlServer db
                        , Services.TreatService treatSvr
                        , Services.ReservationService resvSvr
                        , Services.DoctorService docSvr
                        ) : base(db)
 {
     this._treatSvr = treatSvr;
     _resvSvr       = resvSvr;
     _docSvr        = docSvr;
 }
Exemple #3
0
 public CodeController(DbContext.CHISEntitiesSqlServer db
                       , Services.DrugService drugsvr
                       , Services.CustomerService cusSvr
                       , Services.DoctorService docrSvr
                       ) : base(db)
 {
     _drugSvr = drugsvr;
     _cusSvr  = cusSvr;
     _docrSvr = docrSvr;
 }
Exemple #4
0
 public DoctorController(DbContext.CHISEntitiesSqlServer db,
                         Services.ReservationService resSvr,
                         Services.WorkStationService stationSvr
                         , Services.DoctorService docrSvr
                         ) : base(db)
 {
     _resSvr     = resSvr;
     _stationSvr = stationSvr;
     _docrSvr    = docrSvr;
 }
Exemple #5
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;
 }
Exemple #6
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;
 }
Exemple #7
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;
 }
Exemple #8
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;
 }
Exemple #9
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;
 }
Exemple #10
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;
 }
Exemple #11
0
 public Search(CHIS.DbContext.CHISEntitiesSqlServer db
               , Services.DoctorService docSvr) : base(db)
 {
     _docSvr = docSvr;
 }
Exemple #12
0
 public MyPanelController(DbContext.CHISEntitiesSqlServer db
                          , Services.DoctorService docSvr) : base(db)
 {
     _docSvr = docSvr;
 }