public CustomerRepository(PacktDbContext context)
 {
     _context = context;
 }
Example #2
0
 public SeedDataService(PacktDbContext context)
 {
     _context = context;
 }
 //ctor tab (snipped)
 public CustomerRepository(PacktDbContext context) // we injecteren hier PacktDbContext ()
 {
     _context = context;
 }