public ProductRepository(InternetShopContext db)
 {
     this.db    = db;
     this.dbSet = db.Set <Product>();
 }
Пример #2
0
 public BasketRepository(InternetShopContext db)
 {
     this.db    = db;
     this.dbSet = db.Set <Basket>();
 }
Пример #3
0
 public OrderRepository(InternetShopContext db)
 {
     this.db    = db;
     this.dbSet = db.Set <Order>();
 }