Exemplo n.º 1
0
        public IActionResult GetListByLessonId(string id)
        {
            List <Chapter> list = _chapterService.GetListByLessonId(id);

            return(Ok(list));
        }