Esempio n. 1
0
 public System.Threading.Tasks.Task <WebTrainingMVC.CheckVatService.checkVatResponse> checkVatAsync(string countryCode, string vatNumber)
 {
     WebTrainingMVC.CheckVatService.checkVatRequest inValue = new WebTrainingMVC.CheckVatService.checkVatRequest();
     inValue.Body             = new WebTrainingMVC.CheckVatService.checkVatRequestBody();
     inValue.Body.countryCode = countryCode;
     inValue.Body.vatNumber   = vatNumber;
     return(((WebTrainingMVC.CheckVatService.checkVatPortType)(this)).checkVatAsync(inValue));
 }
Esempio n. 2
0
 public string checkVat(ref string countryCode, ref string vatNumber, out bool valid, out string name, out string address)
 {
     WebTrainingMVC.CheckVatService.checkVatRequest inValue = new WebTrainingMVC.CheckVatService.checkVatRequest();
     inValue.Body             = new WebTrainingMVC.CheckVatService.checkVatRequestBody();
     inValue.Body.countryCode = countryCode;
     inValue.Body.vatNumber   = vatNumber;
     WebTrainingMVC.CheckVatService.checkVatResponse retVal = ((WebTrainingMVC.CheckVatService.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);
 }
Esempio n. 3
0
 System.Threading.Tasks.Task <WebTrainingMVC.CheckVatService.checkVatResponse> WebTrainingMVC.CheckVatService.checkVatPortType.checkVatAsync(WebTrainingMVC.CheckVatService.checkVatRequest request)
 {
     return(base.Channel.checkVatAsync(request));
 }
Esempio n. 4
0
 WebTrainingMVC.CheckVatService.checkVatResponse WebTrainingMVC.CheckVatService.checkVatPortType.checkVat(WebTrainingMVC.CheckVatService.checkVatRequest request)
 {
     return(base.Channel.checkVat(request));
 }