Exemple #1
0
 public ProductService(ATKSmartContext dbContext)
 {
     _dbContext = dbContext;
 }
 public StoreService(IOptions <AppSettings> appSettings, ATKSmartContext dbContext, IMapper mapper)
 {
     _dbContext = dbContext;
     _mapper    = mapper;
 }
Exemple #3
0
 public UserService(IOptions <AppSettings> appSettings, ATKSmartContext dbContext, IMapper mapper)
 {
     _appSettings = appSettings.Value;
     _dbContext   = dbContext;
     _mapper      = mapper;
 }
Exemple #4
0
 public RoomService(ATKSmartContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemple #5
0
 public SupplierService(ATKSmartContext dbContext)
 {
     _dbContext = dbContext;
 }