public List <PAM_ProjectAnalysisAttachment> List_PAM_ProjectAnalysisAttachment(long pamId)
        {
            PAM_ProjectAnalysis_Services svc = new PAM_ProjectAnalysis_Services();

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

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

            this.ReturnXDocumentFile(xDoc);
        }