public override void Initialize()
        {
            base.Initialize();
            this._SessionDate        = "";
            this._SessionTime        = "";
            this._FinishTime         = "";
            this._StartTime          = "";
            this._LocationAddress    = "";
            this._Members            = new GovSessionMembers();
            this._Catalogues         = new Sbn.Products.GEP.GEPObject.Catalogues();
            this._CorrelateOffers    = new Offers();
            this._SessionOrder       = new GovernmentSessionOrder();
            this._IsCanceled         = SbnBoolean.OutOfValue;
            this._PreOrders          = new PreSessionOrders();
            this._Presentations      = new Sbn.Products.GEP.GEPObject.Presentations();
            this._GovPresents        = new Sbn.Products.GEP.GEPObject.GovPresentations();
            this._OrganAnnouncement  = new Sbn.Products.GEP.GEPObject.Presentations();
            this._CoLetters          = new Letters();
            this._Messages           = new GovSessionMessagings();
            this._CoGeneralDocuments = new GeneralDocuments();

            this._WordDoc = new GeneralDocument();

            this.Sensitivity = new BasicInfoDetail();
        }
Ejemplo n.º 2
0
        public override object Clone(string sNodeName)
        {
            GovSessionMessagings categories = new GovSessionMessagings();

            foreach (GovSessionMessaging category in this)
            {
                categories.Add((GovSessionMessaging)category.Clone(sNodeName));
            }
            return(categories);
        }