コード例 #1
0
 public InventoryRepository(ShoppinDBContext shoppinDBContext)
 {
     _shoppinDBContext = shoppinDBContext;
 }
コード例 #2
0
 public ProductRepository(ShoppinDBContext shoppinDBContext)
 {
     _shoppinDBContext = shoppinDBContext;
 }
コード例 #3
0
 public ProductsController(ShoppinDBContext context)
 {
     repository = new ProductRepository(context);
 }
コード例 #4
0
 public InventoryController(ShoppinDBContext context)
 {
     repository = new InventoryRepository(context);
 }