Exemplo n.º 1
0
 /// <summary>
 /// Adds the notes.
 /// </summary>
 /// <param name="model">The model.</param>
 /// <param name="userId">The user identifier.</param>
 /// <returns></returns>
 public async Task <bool> AddNotes(AddNotesRequestModel model, int userId)
 {
     try
     {
         return(await notes.AddNotes(model, userId));
     }
     catch (Exception e)
     {
         throw e;
     }
 }