Ejemplo n.º 1
0
 public async Task AddAsync(TEntity entity)
 {
     await _context.Set <TEntity>().AddAsync(entity);
 }
Ejemplo n.º 2
0
 public Repository(NiceAuctionContext context)
 {
     _context = context;
     dbSet    = _context.Set <TEntity>();
 }