public static void Initialize(IApplicationBuilder app) { context = app.ApplicationServices.GetRequiredService <WebStoreContext>(); context.Database.EnsureCreated(); if (context.Categories.Any()) { return; // Az adatbázist már inicializáltnak vesszük, ha létezik kategoria } SeedCategories(); SeedProducts(); }
public static void Initialize(WebStoreContext _context, UserManager <Customer> userManager, RoleManager <IdentityRole <int> > roleManager) { context = _context; _userManager = userManager; _roleManager = roleManager; context.Database.EnsureCreated(); if (context.Categories.Any()) { return; // Az adatbázist már inicializáltnak vesszük, ha létezik kategoria } SeedCategories(); SeedProducts(); SeedUsers(); }
public SpecimenRepository(WebStoreContext ctx) { context = ctx; }
public OrderRepository(WebStoreContext ctx) { context = ctx; }
public StoreService(ShoppingCartService shoppingCartService, WebStoreContext context, UserManager <Customer> userManager) { this.shoppingCartService = shoppingCartService; this.context = context; this.userManager = userManager; }
public ShoppingCartService(WebStoreContext context, IHttpContextAccessor httpContext) { this.context = context; this.httpContext = httpContext.HttpContext; ShoppingCartItems = new List <ShoppingCartItem>(); }
public ComponentRepository(WebStoreContext ctx) { context = ctx; }