private List<Solution> getSolutionsOfUser(Challenge challenge) { User currentUser = authenticationService.getCurrentUser(); return solutionDao.findSolutionsBy(challenge, currentUser); }
public Set<Challenge> getSolvedChallengesOfCurrentUser() { return getSolvedChallengesOf(authenticationService.getCurrentUser()); }