public IQueryable <TEntity> GetAll() { return(context.Set <TEntity>()); }
public GeneriskRepository(EmbeddedStockContext context) { this.context = context; this.dbSet = context.Set <TEntity>(); }