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