public Repository(OrderingSystemDbContext shoppingDbContext) { Context = shoppingDbContext; }
public CustomerRepository(OrderingSystemDbContext shoppingDbContext) : base(shoppingDbContext) { }
public ProductRepository(OrderingSystemDbContext shoppingDbContext) : base(shoppingDbContext) { }