public GenericRepository(ECommerceDemoContext context) { this.context = context; this.dbSet = context.Set <T>(); }
public virtual void Add(T t) { _context.Set <T>().Add(t); }