public AdminSnacksController(LanchesWebContext context)
 {
     _context = context;
 }
Example #2
0
 public OrderRepository(LanchesWebContext lanchesWebContext, ShoppingCart shoppingCart)
 {
     _lanchesWebContext = lanchesWebContext;
     _shoppingCart      = shoppingCart;
 }
Example #3
0
 public SnackCategoryRepository(LanchesWebContext context)
 {
     _context = context;
 }
 public AdminOrdersController(LanchesWebContext context)
 {
     _context = context;
 }