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