public EFProductRepository(ApplicationDbContext context)
 {
     _context = context;
     SeedData.EnsurePopulated(_context);
 }
Exemplo n.º 2
0
 public EFOrderRepository(ApplicationDbContext ctx)
 {
     _context = ctx;
     SeedData.EnsurePopulated(_context);
 }