public async Task <NoteBookDto> GetNotesByNoteBookIdAsync([FromRoute] int id) { NoteBook notebook = await _noteBookService.GetNoteBook(id); return(_mapper.Map <NoteBookDto>(notebook)); }