Beispiel #1
0
        public IActionResult getCoreGoalsByCourse(string course)
        {
            try

            {
                IEnumerable <CoreGoal> list = _courseServices.getCoreGoalsByCourse(course);
                return(Ok(list));
            }

            catch (Exception)
            {
                return(StatusCode(500, "Internal serval error"));
            }
        }