示例#1
0
        public string Add(int currPage, int NumberRowOfPage, string exAttribute)
        {
            string InputValue = CXmlPara.CreatePara(new CPara[] {
                new CPara("PageIndex", currPage.ToString()),
                new CPara("NumberRowOfPage", NumberRowOfPage.ToString())
            },
                                                    exAttribute
                                                    );

            ServiceREF.GeneralLedgerService.CApplicationMessage message = service.CreateTransaction(InputValue);
            return(message.Code);
        }
示例#2
0
 public string CreateTransaction(string inputValue)
 {
     ServiceREF.GeneralLedgerService.CApplicationMessage message = gl_service.CreateTransaction(inputValue);
     return(CJson.SerializeObject(message));
 }
示例#3
0
 public string CreateTransaction(string Input)
 {
     ServiceREF.GeneralLedgerService.GeneralLedgerService GLS     = new ServiceREF.GeneralLedgerService.GeneralLedgerService();
     ServiceREF.GeneralLedgerService.CApplicationMessage  message = GLS.CreateTransaction(Input);
     return(CJson.SerializeObject(message));
 }