public async Task AddAsync(TEntity entity) { await _context.Set <TEntity>().AddAsync(entity); }
public Repository(NiceAuctionContext context) { _context = context; dbSet = _context.Set <TEntity>(); }