Exemplo n.º 1
0
 public System.Threading.Tasks.Task <Acl.Vies.Vies.checkVatResponse> checkVatAsync(string countryCode, string vatNumber)
 {
     Acl.Vies.Vies.checkVatRequest inValue = new Acl.Vies.Vies.checkVatRequest();
     inValue.countryCode = countryCode;
     inValue.vatNumber   = vatNumber;
     return(((Acl.Vies.Vies.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)
 {
     Acl.Vies.Vies.checkVatRequest inValue = new Acl.Vies.Vies.checkVatRequest();
     inValue.Body             = new Acl.Vies.Vies.checkVatRequestBody();
     inValue.Body.countryCode = countryCode;
     inValue.Body.vatNumber   = vatNumber;
     Acl.Vies.Vies.checkVatResponse retVal = ((Acl.Vies.Vies.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 <Acl.Vies.Vies.checkVatResponse> Acl.Vies.Vies.checkVatPortType.checkVatAsync(Acl.Vies.Vies.checkVatRequest request)
 {
     return(base.Channel.checkVatAsync(request));
 }
Exemplo n.º 4
0
 Acl.Vies.Vies.checkVatResponse Acl.Vies.Vies.checkVatPortType.checkVat(Acl.Vies.Vies.checkVatRequest request)
 {
     return(base.Channel.checkVat(request));
 }