public HomeController()
        {
            statistic1 = new Statistic();
            statistic2 = new Statistic();
            statistic3 = new Statistic();

            statistic1 = ReadJson.ReadFile(statistic1, "en.1.json");
            statistic2 = ReadJson.ReadFile(statistic2, "en.2.json");
            statistic3 = ReadJson.ReadFile(statistic3, "en.3.json");


            foreach (var date in Statistic.DateOfMatch)
            {
                date.CountOfGoals = 0;
            }

            statistic1.Config();
            statistic2.Config();
            statistic3.Config();

            goalsPerDay = new GoalsPerDay();
            goalsPerDay = statistic1.MaxGoalsPerDay();
        }