public IEnumerable <Transactions> ConvertToEUR(string sku) { var transactions = transactionService.GetTransactionsBySkuAsync(sku); var rates = rateService.GetAllRatesAsync(); return(null); //TODO }
public async Task <IEnumerable <RatesDTO> > GetRatesAsync() { return(await rateService.GetAllRatesAsync()); }