Esempio n. 1
0
 public System.Threading.Tasks.Task <AddressManager.CASalesTax.GetTaxRateResponse> GetTaxRateAsync(string address, string city, string zip, string taxrate, string county, string jurisdiction)
 {
     AddressManager.CASalesTax.GetTaxRateRequest inValue = new AddressManager.CASalesTax.GetTaxRateRequest();
     inValue.Body              = new AddressManager.CASalesTax.GetTaxRateRequestBody();
     inValue.Body.address      = address;
     inValue.Body.city         = city;
     inValue.Body.zip          = zip;
     inValue.Body.taxrate      = taxrate;
     inValue.Body.county       = county;
     inValue.Body.jurisdiction = jurisdiction;
     return(((AddressManager.CASalesTax.CATaxRateAPISoap)(this)).GetTaxRateAsync(inValue));
 }
Esempio n. 2
0
 public int GetTaxRate(string address, string city, string zip, ref string taxrate, ref string county, ref string jurisdiction)
 {
     AddressManager.CASalesTax.GetTaxRateRequest inValue = new AddressManager.CASalesTax.GetTaxRateRequest();
     inValue.Body              = new AddressManager.CASalesTax.GetTaxRateRequestBody();
     inValue.Body.address      = address;
     inValue.Body.city         = city;
     inValue.Body.zip          = zip;
     inValue.Body.taxrate      = taxrate;
     inValue.Body.county       = county;
     inValue.Body.jurisdiction = jurisdiction;
     AddressManager.CASalesTax.GetTaxRateResponse retVal = ((AddressManager.CASalesTax.CATaxRateAPISoap)(this)).GetTaxRate(inValue);
     taxrate      = retVal.Body.taxrate;
     county       = retVal.Body.county;
     jurisdiction = retVal.Body.jurisdiction;
     return(retVal.Body.GetTaxRateResult);
 }
Esempio n. 3
0
 System.Threading.Tasks.Task <AddressManager.CASalesTax.GetTaxRateResponse> AddressManager.CASalesTax.CATaxRateAPISoap.GetTaxRateAsync(AddressManager.CASalesTax.GetTaxRateRequest request)
 {
     return(base.Channel.GetTaxRateAsync(request));
 }
Esempio n. 4
0
 AddressManager.CASalesTax.GetTaxRateResponse AddressManager.CASalesTax.CATaxRateAPISoap.GetTaxRate(AddressManager.CASalesTax.GetTaxRateRequest request)
 {
     return(base.Channel.GetTaxRate(request));
 }