Beispiel #1
0
 public DrugController(DbContext.CHISEntitiesSqlServer db
                       , Services.JKWebNetService jkSvr
                       , Services.DictService dictSvr
                       ) : base(db)
 {
     _jkSvr   = jkSvr;
     _dictSvr = dictSvr;
 }
Beispiel #2
0
 public DiagnosisController(OAuthService jwtAuth
                            , Services.LoginService loginSvr
                            , Services.TreatService treatSvr
                            , Services.DictService dicSvr)
 {
     _jwtAuth  = jwtAuth;
     _loginSvr = loginSvr;
     _dicSvr   = dicSvr;
     _treatSvr = treatSvr;
 }
Beispiel #3
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;
 }
Beispiel #4
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;
 }