示例#1
0
 public string checkVat(ref string countryCode, ref string vatNumber, out bool valid, out string name, out string address)
 {
     AspDotNetStorefrontCore.VATCheck.checkVatRequest inValue = new AspDotNetStorefrontCore.VATCheck.checkVatRequest();
     inValue.countryCode = countryCode;
     inValue.vatNumber   = vatNumber;
     AspDotNetStorefrontCore.VATCheck.checkVatResponse retVal = ((AspDotNetStorefrontCore.VATCheck.checkVatPortType)(this)).checkVat(inValue);
     countryCode = retVal.countryCode;
     vatNumber   = retVal.vatNumber;
     valid       = retVal.valid;
     name        = retVal.name;
     address     = retVal.address;
     return(retVal.requestDate);
 }
示例#2
0
 AspDotNetStorefrontCore.VATCheck.checkVatResponse AspDotNetStorefrontCore.VATCheck.checkVatPortType.checkVat(AspDotNetStorefrontCore.VATCheck.checkVatRequest request)
 {
     return(base.Channel.checkVat(request));
 }