Example #1
0
 public async Task <CurrencyPurchase> GetPurchaseAsync(int id)
 {
     return(await UnitOfWork.GenericRepository <CurrencyPurchase>().GetByAsync(x => x.Id == id, null));
 }