Exemplo n.º 1
0
 public UsersController(GrabAndGoContext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
 public EFStoreRepository(GrabAndGoContext ctx)
 {
     context = ctx;
 }
Exemplo 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;
 }
Exemplo n.º 5
0
 public AislesController(GrabAndGoContext context)
 {
     _context = context;
 }
Exemplo n.º 6
0
 public ProductsController(GrabAndGoContext context, UserManager <ApplicationUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
Exemplo n.º 7
0
 public EFUserRepository(GrabAndGoContext ctx)
 {
     context = ctx;
 }
Exemplo n.º 8
0
 public EFShoppingListLineRepository(GrabAndGoContext ctx)
 {
     context = ctx;
 }
Exemplo n.º 9
0
 public EFCategoryRepository(GrabAndGoContext ctx)
 {
     context = ctx;
 }
Exemplo n.º 10
0
 public EFProductRepository(GrabAndGoContext ctx)
 {
     context = ctx;
 }
Exemplo n.º 11
0
 public CategoriesController(GrabAndGoContext context)
 {
     _context = context;
 }