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>();
 }