public System.IAsyncResult BeginIntCXC(string json, string dataconvert, System.AsyncCallback callback, object asyncState)
 {
     WebServiceTLAExterno.Accounting.IntCXCRequest inValue = new WebServiceTLAExterno.Accounting.IntCXCRequest();
     inValue.Body             = new WebServiceTLAExterno.Accounting.IntCXCRequestBody();
     inValue.Body.json        = json;
     inValue.Body.dataconvert = dataconvert;
     return(((WebServiceTLAExterno.Accounting.AccountingSoap)(this)).BeginIntCXC(inValue, callback, asyncState));
 }
 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);
 }
 System.IAsyncResult WebServiceTLAExterno.Accounting.AccountingSoap.BeginIntCXC(WebServiceTLAExterno.Accounting.IntCXCRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginIntCXC(request, callback, asyncState));
 }
 WebServiceTLAExterno.Accounting.IntCXCResponse WebServiceTLAExterno.Accounting.AccountingSoap.IntCXC(WebServiceTLAExterno.Accounting.IntCXCRequest request)
 {
     return(base.Channel.IntCXC(request));
 }