/// <remarks/> public void getAccountNotesAsync(getAccountNotesRequest getAccountNotesRequest) { this.getAccountNotesAsync(getAccountNotesRequest, null); }
/// <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); }
/// <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; }