Esempio n. 1
0
 public Print(DbContext.CHISEntitiesSqlServer db,
              Services.DrugService drugSvr,
              Services.TreatService treatSvr
              ) : base(db)
 {
     _drugSvr  = drugSvr;
     _treatSvr = treatSvr;
 }
Esempio n. 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;
 }
Esempio n. 3
0
 public DiagnosisController(OAuthService jwtAuth
                            , Services.LoginService loginSvr
                            , Services.TreatService treatSvr
                            , Services.DictService dicSvr)
 {
     _jwtAuth  = jwtAuth;
     _loginSvr = loginSvr;
     _dicSvr   = dicSvr;
     _treatSvr = treatSvr;
 }
Esempio n. 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;
 }