/// <remarks/> public void deleteAccountNoteAsync(deleteAccountNoteRequest deleteAccountNoteRequest) { this.deleteAccountNoteAsync(deleteAccountNoteRequest, null); }
/// <remarks/> public void deleteAccountNoteAsync(deleteAccountNoteRequest deleteAccountNoteRequest, object userState) { if ((this.deleteAccountNoteOperationCompleted == null)) { this.deleteAccountNoteOperationCompleted = new System.Threading.SendOrPostCallback(this.OndeleteAccountNoteOperationCompleted); } this.InvokeAsync("deleteAccountNote", new object[] { deleteAccountNoteRequest}, this.deleteAccountNoteOperationCompleted, userState); }
/// <summary> /// Delete a note /// </summary> /// <param name="id">Account Id</param> /// <param name="type">Type of note</param> /// <param name="note">Stirng</param> public void DeleteNote(int noteId) { var port = Models.Util.Port(); accountNote insNotes = new accountNote(); insNotes.noteId = noteId; deleteAccountNoteRequest insNotesInf = new deleteAccountNoteRequest(); insNotesInf.accountNote = insNotes; var account = port.deleteAccountNote(insNotesInf); }