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