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