Exemplo n.º 1
0
 public async Task <bool> AddNoteLabel(AddNoteLabelRequest model, int userId, int NoteId)
 {
     try
     {
         return(await notes.AddNoteLabel(model, userId, NoteId));
     }
     catch (Exception e)
     {
         throw e;
     }
 }