public CustomersController(SwizzyContext context, UserManager <IdentityUser> userManager, IMapper mapper, SwizzyContext appDbContext)
        {
            _context = context;

            _userManager  = userManager;
            _mapper       = mapper;
            _appDbContext = appDbContext;
        }
예제 #2
0
 public MenusController(SwizzyContext context)
 {
     _context = context;
 }
 public RestaurantsController(SwizzyContext context)
 {
     _context = context;
 }
 public AddressesController(SwizzyContext context)
 {
     _context = context;
 }
예제 #5
0
 public UsersController(SwizzyContext context)
 {
     _context = context;
 }