public CustomerController(MagicMVCContext context, UserManager <ApplicationUser> userManager) { _context = context; _userManager = userManager; customer = new Customer(_context); franchisee = new Franchisee(_context); }
public Franchisee_StockRequestsController(MagicMVCContext context, UserManager <ApplicationUser> userManager) { _context = context; franchisee = new Franchisee(_context); _userManager = userManager; }
public OwnerInventoryController(MagicMVCContext context) { _context = context; owner = new Owner(_context); }
public StoreController(MagicMVCContext context) { _context = context; }
public ShoppingCartController(MagicMVCContext context, UserManager <ApplicationUser> userManager) { _context = context; _userManager = userManager; customer = new Customer(_context); }
public StockRequestsController(MagicMVCContext context) { _context = context; owner = new Owner(_context); }