Exemplo n.º 1
0
 public InventoryRepository(ShoppinDBContext shoppinDBContext)
 {
     _shoppinDBContext = shoppinDBContext;
 }
Exemplo n.º 2
0
 public ProductRepository(ShoppinDBContext shoppinDBContext)
 {
     _shoppinDBContext = shoppinDBContext;
 }
Exemplo n.º 3
0
 public ProductsController(ShoppinDBContext context)
 {
     repository = new ProductRepository(context);
 }
Exemplo n.º 4
0
 public InventoryController(ShoppinDBContext context)
 {
     repository = new InventoryRepository(context);
 }