예제 #1
0
        public List <CM_CreditMemorandumAttachment> List_CM_CreditMemorandumAttachment(long cmId)
        {
            CM_CreditMemorandum_Services svc = new CM_CreditMemorandum_Services();

            svc.AppConfig = this.AppConfig;
            return(svc.ListAttachment(cmId));
        }
예제 #2
0
        public void Get_CM_CreditMemorandumAttachment_Content(long id)
        {
            CM_CreditMemorandum_Services svc = new CM_CreditMemorandum_Services();

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

            this.ReturnXDocumentFile(xDoc);
        }