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