Example #1
0
 public CategoryRepository(ElectronicShopContext dbContext) : base(dbContext)
 {
 }
 public RepositoryBase(ElectronicShopContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #3
0
 public OrderRepository(ElectronicShopContext dbContext) : base(dbContext)
 {
 }
 public CustomerRepository(ElectronicShopContext dbContext) : base(dbContext)
 {
 }
Example #5
0
 public UnitOfWork(ElectronicShopContext dbContext)
 {
     _dbContext = new ElectronicShopContext();
 }
Example #6
0
 public ProductRepository(ElectronicShopContext dbContext) : base(dbContext)
 {
 }