// GET: Statistic
        public ActionResult Index()
        {
            var statistics = _statisticRepository.GetAllStatisticsWithChildren();

            return(View(statistics.ToList()));
        }