public Order(string description, string orderID, string assetType, string symbol, string quantity, string limitPrice, string stopPrice,
              string orderType, string route, string duration, int accountKey, string gtdDate, string tradeAction,
              bool isDelayed, AdvancedOptions advancedOptions, IEnumerable <GroupOrder> osos)
 {
     Description     = description;
     OrderID         = orderID;
     AssetType       = assetType;
     Symbol          = symbol;
     Quantity        = quantity;
     LimitPrice      = limitPrice;
     StopPrice       = stopPrice;
     OrderType       = orderType;
     Route           = route;
     Duration        = duration;
     AccountKey      = accountKey;
     GTDDate         = gtdDate;
     IsDelayed       = isDelayed;
     TradeAction     = tradeAction;
     AdvancedOptions = advancedOptions;
     OSOs            = osos;
 }
 public Order(string description, string orderID, string assetType, string symbol, string quantity, string limitPrice, string stopPrice,
              string orderType, string route, string duration, int accountKey, string gtdDate, string tradeAction,
              bool isDelayed, AdvancedOptions advancedOptions, IEnumerable<GroupOrder> osos)
 {
     Description = description;
     OrderID = orderID;
     AssetType = assetType;
     Symbol = symbol;
     Quantity = quantity;
     LimitPrice = limitPrice;
     StopPrice = stopPrice;
     OrderType = orderType;
     Route = route;
     Duration = duration;
     AccountKey = accountKey;
     GTDDate = gtdDate;
     IsDelayed = isDelayed;
     TradeAction = tradeAction;
     AdvancedOptions = advancedOptions;
     OSOs = osos;
 }