Example #1
0
 public UsersController(GrabAndGoContext context)
 {
     _context = context;
 }
Example #2
0
 public EFStoreRepository(GrabAndGoContext ctx)
 {
     context = ctx;
 }
Example #3
0
 public StoresController(GrabAndGoContext context)
 {
     _context = context;
 }
 public ShoppingListLinesController(GrabAndGoContext context, UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager)
 {
     _context       = context;
     _userManager   = userManager;
     _signInManager = signInManager;
 }
Example #5
0
 public AislesController(GrabAndGoContext context)
 {
     _context = context;
 }
Example #6
0
 public ProductsController(GrabAndGoContext context, UserManager <ApplicationUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
Example #7
0
 public EFUserRepository(GrabAndGoContext ctx)
 {
     context = ctx;
 }
Example #8
0
 public EFShoppingListLineRepository(GrabAndGoContext ctx)
 {
     context = ctx;
 }
 public EFCategoryRepository(GrabAndGoContext ctx)
 {
     context = ctx;
 }
 public EFProductRepository(GrabAndGoContext ctx)
 {
     context = ctx;
 }
 public CategoriesController(GrabAndGoContext context)
 {
     _context = context;
 }