CurrencyExchangeRateServiceBase
public abstract class CurrencyExchangeRateServiceBase : ICurrencyExchangeRateService
Inheritance
- interface ICurrencyExchangeRateService
Namespace
Methods
FetchExchangeRate
public abstract decimal FetchExchangeRate(string fromCurrencyIsoCode, string toCurrencyIsoCode,
DateTime date)
FetchExchangeRates
public abstract Dictionary<string, Dictionary<string, decimal>> FetchExchangeRates(
string fromCurrencyIsoCode, string[] toCurrencyIsoCodes, DateTime dateFrom, DateTime dateTo)
GetExchangeRate
public decimal GetExchangeRate(string fromCurrencyIsoCode, string toCurrencyIsoCode, DateTime date)
GetExchangeRates
public Dictionary<string, Dictionary<string, decimal>> GetExchangeRates(string fromCurrencyIsoCode,
string[] toCurrencyIsoCodes, DateTime dateFrom, DateTime dateTo)