Example #1
0
 /// <remarks/>
 public void CreateOrUpdateAccountPlaceAsync(string ticket, TransitAccountPlace accountplace) {
     this.CreateOrUpdateAccountPlaceAsync(ticket, accountplace, null);
 }
Example #2
0
 /// <remarks/>
 public void CreateOrUpdateAccountPlaceAsync(string ticket, TransitAccountPlace accountplace, object userState) {
     if ((this.CreateOrUpdateAccountPlaceOperationCompleted == null)) {
         this.CreateOrUpdateAccountPlaceOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdateAccountPlaceOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdateAccountPlace", new object[] {
                 ticket,
                 accountplace}, this.CreateOrUpdateAccountPlaceOperationCompleted, userState);
 }
Example #3
0
 public int CreateOrUpdateAccountPlace(string ticket, TransitAccountPlace accountplace) {
     object[] results = this.Invoke("CreateOrUpdateAccountPlace", new object[] {
                 ticket,
                 accountplace});
     return ((int)(results[0]));
 }