Exemplo n.º 1
0
        public string UpdateTransaction(string exAttribute)
        {
            string _inputValue = CXmlPara.CreatePara(exAttribute);

            ServiceREF.GeneralLedgerService.CApplicationMessage message = gl_service.UpdateTransaction(_inputValue);
            return(CJson.SerializeObject(message));
        }
Exemplo n.º 2
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);
        }
Exemplo n.º 3
0
 public string UpdateTransaction(string inputValue)
 {
     ServiceREF.GeneralLedgerService.CApplicationMessage message = gl_service.UpdateTransaction(inputValue);
     return(CJson.SerializeObject(message));
 }
Exemplo n.º 4
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));
 }