예제 #1
0
파일: NotesBL.cs 프로젝트: shiv-N/Fundoo
 public async Task <bool> AddNoteLabel(AddNoteLabelRequest model, int userId, int NoteId)
 {
     try
     {
         return(await notes.AddNoteLabel(model, userId, NoteId));
     }
     catch (Exception e)
     {
         throw e;
     }
 }