Beispiel #1
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;
 }
Beispiel #2
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;
 }
Beispiel #3
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;
 }
Beispiel #4
0
 public DispensingController(DbContext.CHISEntitiesSqlServer db
                             , Services.DispensingService dispSvr
                             ) : base(db)
 {
     _dispSvr = dispSvr;
 }