public ProductQuery(LeoContext context, InventoryContext inventoryContext, DiscountContext discountContext) { _context = context; _discountContext = discountContext; _inventoryContext = inventoryContext; }
public CustomerDiscountRepository(DiscountContext context, LeoContext shopContext) : base(context) { _context = context; _shopContext = shopContext; }
public InventoryRepository(InventoryContext inventoryContext, LeoContext shopContext) : base(inventoryContext) { _shopContext = shopContext; _inventoryContext = inventoryContext; }
public ProductRepository(LeoContext context) : base(context) { _context = context; }
public SlideQuery(LeoContext context) { _context = context; }
public SlideRepository(LeoContext context) : base(context) { _context = context; }
public ColleagueDiscountRepository(DiscountContext context, LeoContext shopContext) : base(context) { _context = context; _shopContext = shopContext; }