Ejemplo n.º 1
0
 private void SetBaseProperties(TradingPairBase pairBase)
 {
     base.DecimalPlaces = pairBase.DecimalPlaces;
     base.Fee           = pairBase.Fee;
     base.FeeBuyer      = pairBase.FeeBuyer;
     base.FeeSeller     = pairBase.FeeSeller;
     base.Hidden        = pairBase.Hidden;
     base.MaxPrice      = pairBase.MaxPrice;
     base.MinAmount     = pairBase.MinAmount;
     base.MinPrice      = pairBase.MinPrice;
     base.MinTotal      = pairBase.MinTotal;
 }
Ejemplo n.º 2
0
 public TradingPair(TradingPairBase pairBase)
 {
     SetBaseProperties(pairBase);
 }
Ejemplo n.º 3
0
 public TradingPair(string tradingPair, TradingPairBase pairBase)
 {
     Pair = tradingPair;
     SetBaseProperties(pairBase);
 }