public ProductRepository(InternetShopContext db) { this.db = db; this.dbSet = db.Set <Product>(); }
public BasketRepository(InternetShopContext db) { this.db = db; this.dbSet = db.Set <Basket>(); }
public OrderRepository(InternetShopContext db) { this.db = db; this.dbSet = db.Set <Order>(); }