示例#1
0
        private System.IAsyncResult OnBeginBuildAndImplementCustomService(object[] inValues, System.AsyncCallback callback, object asyncState)
        {
            UtnEmall.Server.EntityModel.CustomerServiceDataEntity customerService = ((UtnEmall.Server.EntityModel.CustomerServiceDataEntity)(inValues[0]));
            string sessionIdentifier = ((string)(inValues[1]));

            return(this.BeginBuildAndImplementCustomService(customerService, sessionIdentifier, callback, asyncState));
        }
示例#2
0
 public void BuildAndImplementCustomServiceAsync(UtnEmall.Server.EntityModel.CustomerServiceDataEntity customerService, string sessionIdentifier, object userState)
 {
     if ((this.onBeginBuildAndImplementCustomServiceDelegate == null))
     {
         this.onBeginBuildAndImplementCustomServiceDelegate = new BeginOperationDelegate(this.OnBeginBuildAndImplementCustomService);
     }
     if ((this.onEndBuildAndImplementCustomServiceDelegate == null))
     {
         this.onEndBuildAndImplementCustomServiceDelegate = new EndOperationDelegate(this.OnEndBuildAndImplementCustomService);
     }
     if ((this.onBuildAndImplementCustomServiceCompletedDelegate == null))
     {
         this.onBuildAndImplementCustomServiceCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnBuildAndImplementCustomServiceCompleted);
     }
     base.InvokeAsync(this.onBeginBuildAndImplementCustomServiceDelegate, new object[] {
         customerService,
         sessionIdentifier
     }, this.onEndBuildAndImplementCustomServiceDelegate, this.onBuildAndImplementCustomServiceCompletedDelegate, userState);
 }
 public bool Validate(UtnEmall.Server.EntityModel.CustomerServiceDataEntity customerServiceData)
 {
     return(base.Channel.Validate(customerServiceData));
 }
 public UtnEmall.Server.EntityModel.CustomerServiceDataEntity Delete(UtnEmall.Server.EntityModel.CustomerServiceDataEntity customerServiceDataEntity, string session)
 {
     return(base.Channel.Delete(customerServiceDataEntity, session));
 }
示例#5
0
 public void BuildAndImplementCustomServiceAsync(UtnEmall.Server.EntityModel.CustomerServiceDataEntity customerService, string sessionIdentifier)
 {
     this.BuildAndImplementCustomServiceAsync(customerService, sessionIdentifier, null);
 }
示例#6
0
 public System.IAsyncResult BeginBuildAndImplementCustomService(UtnEmall.Server.EntityModel.CustomerServiceDataEntity customerService, string sessionIdentifier, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginBuildAndImplementCustomService(customerService, sessionIdentifier, callback, asyncState));
 }
示例#7
0
 public bool BuildAndImplementCustomService(UtnEmall.Server.EntityModel.CustomerServiceDataEntity customerService, string sessionIdentifier)
 {
     return(base.Channel.BuildAndImplementCustomService(customerService, sessionIdentifier));
 }