Ejemplo n.º 1
0
        public ActionResult GetListByClassId(string id)
        {
            List <Lesson> lessons = _lessonService.GetByClassId(id);

            return(Ok(lessons));
        }