public override void Initialize()
 {
     base.Initialize();
     this._Year                = 0;
     this._SenderNumber        = "";
     this._Abstract            = "";
     this._OfficialCode        = "";
     this._LetterDate          = "";
     this._Text                = "";
     this._CentralOfficialCode = "";
     this._References          = "";
     this._Sender              = new Personnel();
     this._LetterType          = new BasicInfoDetail();
     this._FlowLetter          = new Letter();
     this._ReceiptType         = new BasicInfoDetail();
     this._ReferenceLetter     = new Letter();
     this._Recipients          = new LetterRecipients();
     this._Sensitivity         = new BasicInfoDetail();
     this._LetterPictures      = new LetterPictures();
     this._WordDoc             = new GeneralDocument();
     this._OfficialType        = new BasicInfoDetail();
     this._CorrelateOffer      = new Offer();
     this._ActionType          = new BasicInfoDetail();
     this._Attachments         = new LetterAttachments();
     this._CoOffers            = new Offers();
     this.LetterNO             = "";
 }
        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();
        }
Пример #3
0
        public override object Clone(string sNodeName)
        {
            Offers offers = new Offers();

            foreach (Offer offer in this)
            {
                offers.Add((Offer)offer.Clone(sNodeName));
            }
            return(offers);
        }