Ejemplo n.º 1
0
 public List <Currency> GetAllCurrencies() => RequestHelper.GetAllCurrencies(apiKey).OrderBy(x => x.CurrencyName).ToList();
Ejemplo n.º 2
0
 public double Convert(double amount, string from, string to) => RequestHelper.ExchangeRate(from, to, apiKey) * amount;