Example #1
0
 /// <summary>
 /// Bulks the trash.
 /// </summary>
 /// <param name="NoteId">The note identifier.</param>
 /// <param name="UserId">The user identifier.</param>
 /// <returns></returns>
 public async Task <List <DisplayResponceModel> > BulkTrash(List <int> NoteId, int UserId)
 {
     try
     {
         return(await notes.BulkTrash(NoteId, UserId));
     }
     catch (Exception e)
     {
         throw e;
     }
 }