public GuaranteedStopLossOrderEntryData(double minimumDistance, double premium, GuaranteedStopLossOrderLevelRestriction levelRestriction)
 {
     this.MinimumDistance  = minimumDistance;
     this.Premium          = premium;
     this.LevelRestriction = levelRestriction;
 }
 public GuaranteedStopLossOrderEntryData()
 {
     this.LevelRestriction = new GuaranteedStopLossOrderLevelRestriction();
 }