public Repository(ContextEntity context) { _context = context; DbSet = _context.Set <TEntity>(); }
public async Task Add(T entity) { _context.Set <T>().Add(entity); await _context.SaveChangesAsync(); }
protected Repository(ContextEntity context) { Db = context; DbSet = Db.Set <TEntity>(); }