Ejemplo n.º 1
0
 /// <remarks/>
 public void CreateCustomerProfileAsync(CustomerProfileRequestData request) {
     this.CreateCustomerProfileAsync(request, null);
 }
Ejemplo n.º 2
0
 /// <remarks/>
 public void CreateCustomerProfileAsync(CustomerProfileRequestData request, object userState) {
     if ((this.CreateCustomerProfileOperationCompleted == null)) {
         this.CreateCustomerProfileOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateCustomerProfileOperationCompleted);
     }
     this.InvokeAsync("CreateCustomerProfile", new object[] {
                 request}, this.CreateCustomerProfileOperationCompleted, userState);
 }
Ejemplo n.º 3
0
 public CustomerProfileResponseData CreateCustomerProfile(CustomerProfileRequestData request) {
     object[] results = this.Invoke("CreateCustomerProfile", new object[] {
                 request});
     return ((CustomerProfileResponseData)(results[0]));
 }