Exemple #1
0
        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();
        }
Exemple #2
0
        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;
 }
Exemple #4
0
 public OrderRepository(WebStoreContext ctx)
 {
     context = ctx;
 }
Exemple #5
0
 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;
 }