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