Ejemplo n.º 1
0
 public GenericUnitOfWork()
 {
     _dbContext = new TATelecomTaskDbContext();
 }
Ejemplo n.º 2
0
 public GenericRepository(TATelecomTaskDbContext dbContext)
 {
     _dbContext = dbContext;
     _dbSet     = _dbContext.Set <TEntity>();
 }