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); }
public string CreateTransaction(string inputValue) { ServiceREF.GeneralLedgerService.CApplicationMessage message = gl_service.CreateTransaction(inputValue); return(CJson.SerializeObject(message)); }
public string CreateTransaction(string Input) { ServiceREF.GeneralLedgerService.GeneralLedgerService GLS = new ServiceREF.GeneralLedgerService.GeneralLedgerService(); ServiceREF.GeneralLedgerService.CApplicationMessage message = GLS.CreateTransaction(Input); return(CJson.SerializeObject(message)); }