public void LogAnswer(Question question, int answerId)
        {
            var entry = statisticRepository.GetByQuestion(question);

            if (entry != null)
            {
                entry.Question.Answers[answerId].TimesSelected++;
                statisticRepository.Update(entry);
            }
            else
            {
                statisticRepository.Add(new StatisticsEntry(question));
            }
        }