public List <T> Find(Expression <Func <T, bool> > predicate) => ToSortedList(_repo.Find(predicate));
Exemple #2
0
 protected override List <FundRequestDTO> QueryItems(ISimpleRepo <FundRequestDTO> db)
 => db.Find(_ => _.BankAccountId == AppArgs.CurrentBankAcct.Id);