Beispiel #1
0
 public ColorRepository(ShoeStoreDbContext context)
 {
     _context = context;
 }
 public BrandRepository(ShoeStoreDbContext context)
 {
     _context = context;
 }
 public StyleRepository(ShoeStoreDbContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public InventoryRepository(ShoeStoreDbContext context)
 {
     _context = context;
 }
 public PhotoRepository(ShoeStoreDbContext context)
 {
     _context = context;
 }
 public UnitOfWork(ShoeStoreDbContext context)
 {
     _context = context;
 }