return levels.length > 0 ? levels[0] : null;
}
private Level create(Category category, int number, StatisticRefEnum statisticRefEnum, int min, int max)
{
StatisticRef statisticRef = statisticRefDaoService.get(statisticRefEnum);
if (statisticRef != null)
{
return create(category, number, statisticRef, min, max);
}