Esempio n. 1
0
 public SingleExchangeModel(SingleExchangeModel <T> other) :
     this(
         other.marketSellRates.ToDictionary(x => x.Key, x => x.Value),
         other.marketBuyRates.ToDictionary(x => x.Key, x => x.Value),
         other.moneyType)
 {
 }
Esempio n. 2
0
 public AdaptableExchangeModel(SingleExchangeModel <T> other) : base(other)
 {
 }