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._CoDocument     = new Document();
     this._Attachments    = new LetterAttachments();
     this._CoDocumentType = new DocumentType();
     this._DeliveryType   = new BasicInfoDetail();
     this._SecurityLevel  = new BasicInfoDetail();
 }
        public override object Clone(string sNodeName)
        {
            LetterAttachments attachments = new LetterAttachments();

            foreach (LetterAttachment attachment in this)
            {
                attachments.Add((LetterAttachment)attachment.Clone(sNodeName));
            }
            return(attachments);
        }
 public override void Initialize()
 {
     base.Initialize();
     this._Title            = "";
     this._Description      = "";
     this._OrderInSession   = 0;
     this._CorrelateSession = new GovSession();
     this._Attachments      = new PresentationAttachs();
     this._OwnerOrgan       = new OrgUnit();
     this._CoLetter         = new Letter();
     this._SensitivityType  = new BasicInfoDetail();
     this._PresentType      = new BasicInfoDetail();
     this._DocAttachments   = new LetterAttachments();
     this._CoSessions       = new GovSessions();
 }