예제 #1
0
 public ProductQuery(LeoContext context, InventoryContext inventoryContext,
                     DiscountContext discountContext)
 {
     _context          = context;
     _discountContext  = discountContext;
     _inventoryContext = inventoryContext;
 }
예제 #2
0
 public CustomerDiscountRepository(DiscountContext context, LeoContext shopContext) : base(context)
 {
     _context     = context;
     _shopContext = shopContext;
 }
예제 #3
0
 public InventoryRepository(InventoryContext inventoryContext, LeoContext shopContext) : base(inventoryContext)
 {
     _shopContext      = shopContext;
     _inventoryContext = inventoryContext;
 }
예제 #4
0
 public ProductRepository(LeoContext context) : base(context)
 {
     _context = context;
 }
예제 #5
0
 public SlideQuery(LeoContext context)
 {
     _context = context;
 }
예제 #6
0
 public SlideRepository(LeoContext context) : base(context)
 {
     _context = context;
 }
 public ColleagueDiscountRepository(DiscountContext context, LeoContext shopContext) : base(context)
 {
     _context     = context;
     _shopContext = shopContext;
 }