public System.Threading.Tasks.Task <VATSoapService.ServiceArrResponse> ServiceArrAsync(string username, string password, VATSoapService.ArrayOfString TINs)
 {
     VATSoapService.ServiceArrRequest inValue = new VATSoapService.ServiceArrRequest();
     inValue.Body          = new VATSoapService.ServiceArrRequestBody();
     inValue.Body.username = username;
     inValue.Body.password = password;
     inValue.Body.TINs     = TINs;
     return(((VATSoapService.vatserviceRD3Soap)(this)).ServiceArrAsync(inValue));
 }
 public ServiceArrRequestBody(string username, string password, VATSoapService.ArrayOfString TINs)
 {
     this.username = username;
     this.password = password;
     this.TINs     = TINs;
 }