/// <remarks/>
 public void saveCustomerAsync(long cookie, string firstName, string middleInitials, string lastName, CUser pCustomer) {
     this.saveCustomerAsync(cookie, firstName, middleInitials, lastName, pCustomer, null);
 }
 /// <remarks/>
 public void saveCustomerAsync(long cookie, string firstName, string middleInitials, string lastName, CUser pCustomer, object userState) {
     if ((this.saveCustomerOperationCompleted == null)) {
         this.saveCustomerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnsaveCustomerOperationCompleted);
     }
     this.InvokeAsync("saveCustomer", new object[] {
                 cookie,
                 firstName,
                 middleInitials,
                 lastName,
                 pCustomer}, this.saveCustomerOperationCompleted, userState);
 }
 public int saveCustomer(long cookie, string firstName, string middleInitials, string lastName, CUser pCustomer) {
     object[] results = this.Invoke("saveCustomer", new object[] {
                 cookie,
                 firstName,
                 middleInitials,
                 lastName,
                 pCustomer});
     return ((int)(results[0]));
 }
 /// <remarks/>
 public void addCustomerAsync(long cookie, CUser pCustomer, object userState) {
     if ((this.addCustomerOperationCompleted == null)) {
         this.addCustomerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnaddCustomerOperationCompleted);
     }
     this.InvokeAsync("addCustomer", new object[] {
                 cookie,
                 pCustomer}, this.addCustomerOperationCompleted, userState);
 }
 /// <remarks/>
 public void addCustomerAsync(long cookie, CUser pCustomer) {
     this.addCustomerAsync(cookie, pCustomer, null);
 }
 public long addCustomer(long cookie, CUser pCustomer) {
     object[] results = this.Invoke("addCustomer", new object[] {
                 cookie,
                 pCustomer});
     return ((long)(results[0]));
 }
 /// <remarks/>
 public void addUserAsync(long cookie, CUser pUser) {
     this.addUserAsync(cookie, pUser, null);
 }