Example #1
0
            /// <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();

                WipService.accountNote insNotes = new MPXMobile.WipService.accountNote();
                insNotes.noteId = noteId;
                WipService.deleteAccountNoteRequest insNotesInf = new MPXMobile.WipService.deleteAccountNoteRequest();
                insNotesInf.accountNote = insNotes;
                var account = port.deleteAccountNote(insNotesInf);
            }
Example #2
0
 /// <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();
     WipService.accountNote insNotes = new MPXMobile.WipService.accountNote();
     insNotes.noteId = noteId;
     WipService.deleteAccountNoteRequest insNotesInf = new MPXMobile.WipService.deleteAccountNoteRequest();
     insNotesInf.accountNote = insNotes;
     var account = port.deleteAccountNote(insNotesInf);
 }