예제 #1
0
파일: Print.cs 프로젝트: iJzFan/backup
 public Print(DbContext.CHISEntitiesSqlServer db,
              Services.DrugService drugSvr,
              Services.TreatService treatSvr
              ) : base(db)
 {
     _drugSvr  = drugSvr;
     _treatSvr = treatSvr;
 }
예제 #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;
 }
예제 #3
0
 public DiagnosisController(OAuthService jwtAuth
                            , Services.LoginService loginSvr
                            , Services.TreatService treatSvr
                            , Services.DictService dicSvr)
 {
     _jwtAuth  = jwtAuth;
     _loginSvr = loginSvr;
     _dicSvr   = dicSvr;
     _treatSvr = treatSvr;
 }
예제 #4
0
 public DoctorTreatController(Services.ReservationService resSvr,
                              Services.WorkStationService stationSvr,
                              Services.DoctorService docrSvr,
                              Services.CustomerService cusSvr,
                              Services.DrugService drugSvr,
                              Services.DictService dicSvr,
                              Services.TreatService treatSvr
                              ) //: base(db)
 {
     _resSvr     = resSvr;
     _stationSvr = stationSvr;
     _cusSvr     = cusSvr;
     _docrSvr    = docrSvr;
     _drugSvr    = drugSvr;
     _dicSvr     = dicSvr;
     _treatSvr   = treatSvr;
 }