Пример #1
0
 public ForeignCurrency UpdateDenomination(ForeignCurrency fc)
 {
     Abbreviation = fc.Abbreviation;
     ExchangeRate = fc.ExchangeRate;
     Symbol       = fc.Symbol;
     return(this);
 }
Пример #2
0
 public ForeignCurrency(decimal amountNative, ForeignCurrency existingForeignCurrency)
 {
     AmountNative = amountNative;
     Symbol       = existingForeignCurrency.Symbol;
     ExchangeRate = existingForeignCurrency.ExchangeRate;
     Abbreviation = existingForeignCurrency.Abbreviation;
 }