public List <PAM_ShareValuationReportAttachment> List_PAM_ShareValuationReportAttachment(long pamId)
        {
            PAM_ShareValuationReport_Services svc = new PAM_ShareValuationReport_Services();

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

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

            this.ReturnXDocumentFile(xDoc);
        }