Exemplo n.º 1
0
 public CategoryRepository(ElectronicShopContext dbContext) : base(dbContext)
 {
 }
Exemplo n.º 2
0
 public RepositoryBase(ElectronicShopContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemplo n.º 3
0
 public OrderRepository(ElectronicShopContext dbContext) : base(dbContext)
 {
 }
 public CustomerRepository(ElectronicShopContext dbContext) : base(dbContext)
 {
 }
Exemplo n.º 5
0
 public UnitOfWork(ElectronicShopContext dbContext)
 {
     _dbContext = new ElectronicShopContext();
 }
Exemplo n.º 6
0
 public ProductRepository(ElectronicShopContext dbContext) : base(dbContext)
 {
 }