public List <PAM_TermSheetAttachment> List_PAM_TermSheetAttachment(long pamId)
        {
            PAM_TermSheet_Services svc = new PAM_TermSheet_Services();

            svc.AppConfig = this.AppConfig;
            return(svc.ListAttachment(pamId));
        }
        public void Get_PAM_TermSheetAttachment_Content(long id)
        {
            PAM_TermSheet_Services svc = new PAM_TermSheet_Services();

            svc.AppConfig = this.AppConfig;
            XDocument xDoc = svc.GetAttachmentContent(id);

            this.ReturnXDocumentFile(xDoc);
        }