示例#1
0
 public InventoryItemRepository(PoppuloDbContext context)
 {
     _context = context;
 }
 public InventoryItemsController(PoppuloDbContext context)
 {
     _context = context;
     InventoryItemRepository = new InventoryItemRepository(context);
 }
示例#3
0
 public CategoriesController(PoppuloDbContext context)
 {
     _context = context;
 }