Esempio n. 1
0
 /// <remarks/>
 public void CreateOrUpdateAccountStoryAsync(string ticket, TransitAccountStory story) {
     this.CreateOrUpdateAccountStoryAsync(ticket, story, null);
 }
Esempio n. 2
0
 /// <remarks/>
 public void CreateOrUpdateAccountStoryAsync(string ticket, TransitAccountStory story, object userState) {
     if ((this.CreateOrUpdateAccountStoryOperationCompleted == null)) {
         this.CreateOrUpdateAccountStoryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdateAccountStoryOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdateAccountStory", new object[] {
                 ticket,
                 story}, this.CreateOrUpdateAccountStoryOperationCompleted, userState);
 }
Esempio n. 3
0
 public int CreateOrUpdateAccountStory(string ticket, TransitAccountStory story) {
     object[] results = this.Invoke("CreateOrUpdateAccountStory", new object[] {
                 ticket,
                 story});
     return ((int)(results[0]));
 }