Exemplo n.º 1
0
 /// <summary>
 /// Displays the notes.
 /// </summary>
 /// <param name="userId">The user identifier.</param>
 /// <returns></returns>
 public async Task <IList <DisplayResponceModel> > DisplayNotes(int userId)
 {
     try
     {
         return(await notes.DisplayNotes(userId));
     }
     catch (Exception e)
     {
         throw e;
     }
 }