Example #1
0
        public ActionResult <IEnumerable <Student> > GetStudents()
        {
            if (_classroomService == null)
            {
                return(NotFound());
            }
            var result = _classroomService.GetAllStudents().ToList();

            return(result);
        }