Exemplo n.º 1
0
 /// <summary>
 /// Edits the note.
 /// </summary>
 /// <param name="model">The model.</param>
 /// <param name="userId">The user identifier.</param>
 /// <returns></returns>
 public async Task <bool> EditNote(int noteId, EditNoteRequestModel model, int userId)
 {
     return(await notes.EditNote(noteId, model, userId));
 }