public IActionResult getCoreGoalsByCourse(string course) { try { IEnumerable <CoreGoal> list = _courseServices.getCoreGoalsByCourse(course); return(Ok(list)); } catch (Exception) { return(StatusCode(500, "Internal serval error")); } }