Exemplo n.º 1
0
 public ExchangeRate(string fromCurrency, string toCurrency, decimal exchangeRateValue)
 {
     CurrencyPair = new CurrencyPair(fromCurrency, toCurrency);
     Rate         = exchangeRateValue;
 }
Exemplo n.º 2
0
 public ExchangeRate(CurrencyPair currencyPair, decimal exchangeRateValue)
 {
     CurrencyPair = currencyPair;
     Rate         = exchangeRateValue;
 }