Exemplo n.º 1
0
 /// <remarks/>
 public void CreateCustomerShippingAddressAsync(CustomerShippingAddressRequestData request) {
     this.CreateCustomerShippingAddressAsync(request, null);
 }
Exemplo n.º 2
0
 /// <remarks/>
 public void CreateCustomerShippingAddressAsync(CustomerShippingAddressRequestData request, object userState) {
     if ((this.CreateCustomerShippingAddressOperationCompleted == null)) {
         this.CreateCustomerShippingAddressOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateCustomerShippingAddressOperationCompleted);
     }
     this.InvokeAsync("CreateCustomerShippingAddress", new object[] {
                 request}, this.CreateCustomerShippingAddressOperationCompleted, userState);
 }
Exemplo n.º 3
0
 public CustomerShippingAddressResponseData CreateCustomerShippingAddress(CustomerShippingAddressRequestData request) {
     object[] results = this.Invoke("CreateCustomerShippingAddress", new object[] {
                 request});
     return ((CustomerShippingAddressResponseData)(results[0]));
 }