Ejemplo n.º 1
0
        public override void Initialize()
        {
            base.Initialize();
            this._SessionDate           = "";
            this._Duration              = "";
            this._StartTime             = "";
            this._FinishTime            = "";
            this._SessionTime           = "";
            this._LocationAddress       = "";
            this._CorrelateCommission   = new BasicInfoDetail();
            this._CorrelateOffers       = new OfferCommissions();
            this._Members               = new CommissionSessionMembers();
            this._SessionOrder          = new CommissionSessionOrder();
            this._CancelSessionOrder    = new CancelCommissionSessionOrder();
            this._CommissionSessionType = new BasicInfoDetail();
            this._IsCanceled            = SbnBoolean.OutOfValue;
            this._CoLetters             = new Letters();

            this._WordDoc                = new GeneralDocument();
            this._CancelWordDoc          = new GeneralDocument();
            this._CommissionSessionVoice = null;
            // this._Extension = "";

            this.Sensitivity = new BasicInfoDetail();
        }
Ejemplo n.º 2
0
        public override SbnObject Clone(string sNodeName)
        {
            CommissionSessionOrder order = new CommissionSessionOrder {
                ID = base.ID
            };

            if (this._Text != null)
            {
                order.Text = (string)this._Text.Clone();
            }
            if (!object.ReferenceEquals(this.CorrelateLetter, null))
            {
                order.CorrelateLetter = (Letter)this.CorrelateLetter.Clone(sNodeName);
            }
            return(order);
        }