public CustomSupplierFieldRepository(EveryPayContext context) { this.context = context; this.dbSet = context.Set <SupplierField>(); GenericRepository = new GenericRepository <SupplierField>(context); }
public GenericRepository(EveryPayContext context) { this.context = context; this.dbSet = context.Set <TEntity>(); }