public List <PAM_OtherReportsAttachment> List_PAM_OtherReportsAttachment(long pamId)
        {
            PAM_OtherReports_Services svc = new PAM_OtherReports_Services();

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

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

            this.ReturnXDocumentFile(xDoc);
        }