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