public List <Goal> GetGoals(string teamName)
        {
            var goals = _goalService.GetAllGoals(teamName);

            return(goals);
        }