public bool IntCXC(string json, ref string dataconvert)
 {
     WebServiceTLAExterno.Accounting.IntCXCRequest inValue = new WebServiceTLAExterno.Accounting.IntCXCRequest();
     inValue.Body             = new WebServiceTLAExterno.Accounting.IntCXCRequestBody();
     inValue.Body.json        = json;
     inValue.Body.dataconvert = dataconvert;
     WebServiceTLAExterno.Accounting.IntCXCResponse retVal = ((WebServiceTLAExterno.Accounting.AccountingSoap)(this)).IntCXC(inValue);
     dataconvert = retVal.Body.dataconvert;
     return(retVal.Body.IntCXCResult);
 }
 public bool EndIntCXC(System.IAsyncResult result, out string dataconvert)
 {
     WebServiceTLAExterno.Accounting.IntCXCResponse retVal = ((WebServiceTLAExterno.Accounting.AccountingSoap)(this)).EndIntCXC(result);
     dataconvert = retVal.Body.dataconvert;
     return(retVal.Body.IntCXCResult);
 }