Beispiel #1
0
 public IEnumerable <Currency> GelByAccountId(int accountId)
 {
     return(_currency.Find(CurrencyQuery.WithByAccountId(accountId)));
 }
Beispiel #2
0
 public Currency GetByAccountId(int accountId)
 {
     return(_currency.One(CurrencyQuery.WithByAccountId(accountId)));
 }