public SystemParameter(CommonSystemParameter systemParameter)
 {
     this.Initialize(systemParameter);
 }
 internal void Initialize(CommonSystemParameter systemParameter)
 {
     this.IsCustomerVisibleToDealer = systemParameter.IsCustomerVisibleToDealer;
     this.CanDealerViewAccountInfo = systemParameter.CanDealerViewAccountInfo;
     this.DealerUsingAccountPermission = systemParameter.DealerUsingAccountPermission;
     this.MooMocAcceptDuration = TimeSpan.FromMinutes(systemParameter.MooMocAcceptDuration);
     this.MooMocCancelDuration = TimeSpan.FromMinutes(systemParameter.MooMocCancelDuration);
     this.QuotePolicyDetailID = systemParameter.QuotePolicyDetailID;
     this.LotDecimal = systemParameter.LotDecimal;
     this.AutoConfirmOrder = systemParameter.AutoConfirmOrder;
     this.ConfirmRejectDQOrder = systemParameter.ConfirmRejectDQOrder;
     this.HighBid = systemParameter.HighBid;
     this.LowBid = systemParameter.LowBid;
     this.EnableTrendSheetChart = systemParameter.EnableTrendSheetChart;
 }