Пример #1
0
 /// <remarks/>
 public void getAccountNotesAsync(getAccountNotesRequest getAccountNotesRequest) {
     this.getAccountNotesAsync(getAccountNotesRequest, null);
 }
Пример #2
0
 /// <remarks/>
 public void getAccountNotesAsync(getAccountNotesRequest getAccountNotesRequest, object userState) {
     if ((this.getAccountNotesOperationCompleted == null)) {
         this.getAccountNotesOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetAccountNotesOperationCompleted);
     }
     this.InvokeAsync("getAccountNotes", new object[] {
                 getAccountNotesRequest}, this.getAccountNotesOperationCompleted, userState);
 }
Пример #3
0
 /// <summary>
 /// Returns Notes by account
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public getAccountNotesResponse GetAccountNotes(string id)
 {
     var port = Models.Util.Port();
     getAccountNotesRequest acreq = new getAccountNotesRequest();
     acreq.accountId = int.Parse(id);
     var account = port.getAccountNotes(acreq);
     return account;
 }