Exemple #1
0
 public SerialNumberRepository(SqlDbContext _db)
 {
     dbContext = _db;
 }
Exemple #2
0
 public OrderItemRepository(SqlDbContext _db)
 {
     dbContext = _db;
 }
 public ProductRepository(SqlDbContext _db)
 {
     dbContext = _db;
 }
Exemple #4
0
 public UserRepository(SqlDbContext _db, IOptions <AppSettings> _appSettings)
 {
     appSettings = _appSettings.Value;
     dbContext   = _db;
 }
Exemple #5
0
 public StoreRepository(SqlDbContext _db)
 {
     dbContext = _db;
 }