public InventoryRepository(ShoppinDBContext shoppinDBContext)
 {
     _shoppinDBContext = shoppinDBContext;
 }
 public ProductRepository(ShoppinDBContext shoppinDBContext)
 {
     _shoppinDBContext = shoppinDBContext;
 }
Example #3
0
 public ProductsController(ShoppinDBContext context)
 {
     repository = new ProductRepository(context);
 }
Example #4
0
 public InventoryController(ShoppinDBContext context)
 {
     repository = new InventoryRepository(context);
 }