Пример #1
0
 public DrugController(DbContext.CHISEntitiesSqlServer db
                       , Services.JKWebNetService jkSvr
                       , Services.DictService dictSvr
                       ) : base(db)
 {
     _jkSvr   = jkSvr;
     _dictSvr = dictSvr;
 }
Пример #2
0
 public DispensingService(CHISEntitiesSqlServer db
                          , Services.JKWebNetService jkSvr
                          , IHostingEnvironment env
                          ) : base(db)
 {
     _env   = env;
     _jkSvr = jkSvr;
 }
Пример #3
0
 public DispensingController(DispensingService cbl, DbContext.CHISEntitiesSqlServer db
                             , Services.JKWebNetService jkSvr
                             , Services.DispensingService dispSvr
                             , AutoMapper.IMapper mapper
                             , IHostingEnvironment env) : base(db)
 {
     _jkSvr    = jkSvr;
     _env      = env;
     _dispSvr  = dispSvr;
     _mapper   = mapper;
     this._cbl = cbl;
 }
Пример #4
0
 public DoctorController(IMemoryCache memoryCache
                         , DispensingService dispensingSvr
                         , DrugService drugSrv
                         , Services.JKWebNetService jkSvr
                         , AccessService accSvr
                         , DictService dictSvr
                         , TreatService treatSvr
                         , IMapper mapper
                         , DbContext.CHISEntitiesSqlServer db) : base(db)
 {
     _dispensingSvr = dispensingSvr;
     _drugSrv       = drugSrv;
     _memoryCache   = memoryCache;
     _jkSvr         = jkSvr;
     _accSvr        = accSvr;
     _dictSvr       = dictSvr;
     _treatSvr      = treatSvr;
     _mapper        = mapper;
 }
Пример #5
0
 public UtilsController(DbContext.CHISEntitiesSqlServer db
                        , Services.JKWebNetService jkSvr
                        ) : base(db)
 {
     _jkSvr = jkSvr;
 }