コード例 #1
0
 public ReservationController(DbContext.CHISEntitiesSqlServer db,
                              Services.ReservationService resSvr,
                              Services.WorkStationService stationSvr
                              ) : base(db)
 {
     _resSvr     = resSvr;
     _stationSvr = stationSvr;
 }
コード例 #2
0
 public RxController(Services.ReservationService resvSvr
                     , Services.weixinService wxSvr
                     , AHMSEntitiesSqlServer db
                     )
 {
     _resvSvr = resvSvr;
     _wxSvr   = wxSvr;
     _db      = db;
 }
コード例 #3
0
 public TreatController(DbContext.CHISEntitiesSqlServer db
                        , Services.TreatService treatSvr
                        , Services.ReservationService resvSvr
                        , Services.DoctorService docSvr
                        ) : base(db)
 {
     this._treatSvr = treatSvr;
     _resvSvr       = resvSvr;
     _docSvr        = docSvr;
 }
コード例 #4
0
ファイル: HealthorController.cs プロジェクト: iJzFan/backup
 public HealthorController(Services.ReservationService resSvr,
                           Services.WorkStationService stationSvr,
                           Services.DoctorService docrSvr,
                           Services.CustomerService cusSvr
                           ) //: base(db)
 {
     _resSvr     = resSvr;
     _stationSvr = stationSvr;
     _cusSvr     = cusSvr;
     _docrSvr    = docrSvr;
 }
コード例 #5
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;
 }
コード例 #6
0
ファイル: ReservateController.cs プロジェクト: iJzFan/backup
 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;
 }
コード例 #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;
 }
コード例 #8
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;
 }
コード例 #9
0
ファイル: DispensingController.cs プロジェクト: iJzFan/backup
 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;
 }