Exemplo n.º 1
0
 public System.Threading.Tasks.Task <VAT.ServiceReferenceCheckVat.checkVatResponse> checkVatAsync(string countryCode, string vatNumber)
 {
     VAT.ServiceReferenceCheckVat.checkVatRequest inValue = new VAT.ServiceReferenceCheckVat.checkVatRequest();
     inValue.Body             = new VAT.ServiceReferenceCheckVat.checkVatRequestBody();
     inValue.Body.countryCode = countryCode;
     inValue.Body.vatNumber   = vatNumber;
     return(((VAT.ServiceReferenceCheckVat.checkVatPortType)(this)).checkVatAsync(inValue));
 }
Exemplo n.º 2
0
 public string checkVat(ref string countryCode, ref string vatNumber, out bool valid, out string name, out string address)
 {
     VAT.ServiceReferenceCheckVat.checkVatRequest inValue = new VAT.ServiceReferenceCheckVat.checkVatRequest();
     inValue.Body             = new VAT.ServiceReferenceCheckVat.checkVatRequestBody();
     inValue.Body.countryCode = countryCode;
     inValue.Body.vatNumber   = vatNumber;
     VAT.ServiceReferenceCheckVat.checkVatResponse retVal = ((VAT.ServiceReferenceCheckVat.checkVatPortType)(this)).checkVat(inValue);
     countryCode = retVal.Body.countryCode;
     vatNumber   = retVal.Body.vatNumber;
     valid       = retVal.Body.valid;
     name        = retVal.Body.name;
     address     = retVal.Body.address;
     return(retVal.Body.requestDate);
 }
Exemplo n.º 3
0
 System.Threading.Tasks.Task <VAT.ServiceReferenceCheckVat.checkVatResponse> VAT.ServiceReferenceCheckVat.checkVatPortType.checkVatAsync(VAT.ServiceReferenceCheckVat.checkVatRequest request)
 {
     return(base.Channel.checkVatAsync(request));
 }
Exemplo n.º 4
0
 VAT.ServiceReferenceCheckVat.checkVatResponse VAT.ServiceReferenceCheckVat.checkVatPortType.checkVat(VAT.ServiceReferenceCheckVat.checkVatRequest request)
 {
     return(base.Channel.checkVat(request));
 }