Exemplo n.º 1
0
 public Repository(DeliveryDbContext dbContext)
 {
     _dbContext = dbContext;
     _set       = dbContext.Set <T>();
 }
Exemplo n.º 2
0
 public UnitOfWork(DeliveryDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemplo n.º 3
0
 public UnitOfWork(DeliveryDbContext deliveryDbContext)
 {
     this._deliveryDbContext = deliveryDbContext;
 }
Exemplo n.º 4
0
 public Repository(DeliveryDbContext dbContext)
 {
     this._dbSet = dbContext.Set <TEntity>();
 }