示例#1
0
 private object[] OnEndGetCustomerData(System.IAsyncResult result)
 {
     CuStore.WebUI.CrmService.CustomerData retVal = this.EndGetCustomerData(result);
     return(new object[] {
         retVal
     });
 }
示例#2
0
 public void AddCustomerDataAsync(CuStore.WebUI.CrmService.CustomerData customerData, object userState)
 {
     if ((this.onBeginAddCustomerDataDelegate == null))
     {
         this.onBeginAddCustomerDataDelegate = new BeginOperationDelegate(this.OnBeginAddCustomerData);
     }
     if ((this.onEndAddCustomerDataDelegate == null))
     {
         this.onEndAddCustomerDataDelegate = new EndOperationDelegate(this.OnEndAddCustomerData);
     }
     if ((this.onAddCustomerDataCompletedDelegate == null))
     {
         this.onAddCustomerDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAddCustomerDataCompleted);
     }
     base.InvokeAsync(this.onBeginAddCustomerDataDelegate, new object[] {
         customerData
     }, this.onEndAddCustomerDataDelegate, this.onAddCustomerDataCompletedDelegate, userState);
 }
示例#3
0
 public void AddCustomerDataAsync(CuStore.WebUI.CrmService.CustomerData customerData)
 {
     this.AddCustomerDataAsync(customerData, null);
 }
示例#4
0
 private System.IAsyncResult OnBeginAddCustomerData(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     CuStore.WebUI.CrmService.CustomerData customerData = ((CuStore.WebUI.CrmService.CustomerData)(inValues[0]));
     return(this.BeginAddCustomerData(customerData, callback, asyncState));
 }
示例#5
0
 public System.IAsyncResult BeginAddCustomerData(CuStore.WebUI.CrmService.CustomerData customerData, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginAddCustomerData(customerData, callback, asyncState));
 }
示例#6
0
 public bool AddCustomerData(CuStore.WebUI.CrmService.CustomerData customerData)
 {
     return(base.Channel.AddCustomerData(customerData));
 }