public IActionResult GetListByLessonId(string id) { List <Chapter> list = _chapterService.GetListByLessonId(id); return(Ok(list)); }