public EFProductRepository(ApplicationDbContext context)
 {
     _context = context;
     SeedData.EnsurePopulated(_context);
 }
Exemple #2
0
 public EFOrderRepository(ApplicationDbContext ctx)
 {
     _context = ctx;
     SeedData.EnsurePopulated(_context);
 }