public override object Clone(string sNodeName)
        {
            PresentationAttachs attachs = new PresentationAttachs();

            foreach (PresentationAttach attach in this)
            {
                attachs.Add((PresentationAttach)attach.Clone(sNodeName));
            }
            return(attachs);
        }
 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();
 }