public IActionResult Get(int id) { var goal = _goalRepository.GetById(id); if (goal == null) { return(NotFound()); } return(Ok(goal)); }