private UserStatistic create(StatisticRef statisticRef, UserWrapper userWrapper)
{
UserStatistic userStatistic = ao.create(UserStatistic.class, new DBParam("KEY", KeyableUtils.buildKey(statisticRef, userWrapper)));
userStatistic.setStatisticRef(statisticRef);
userStatistic.setUserWrapper(userWrapper);
userStatistic.save();
return userStatistic;
}
}