Example #1
0
        public ActionResult <bool> AddStudent(Student student)
        {
            if (_classroomService == null)
            {
                return(NotFound());
            }
            var result = _classroomService.AddStudent(student);

            return(result);
        }