public IEnumerable <Standing> Get()
        {
            var      teamsList   = _dystirDBContext.Teams;
            DateTime date        = new DateTime(DateTime.Now.Year, 1, 1);
            var      matchesList = _dystirDBContext.Matches?.Where(x => x.MatchTypeID != null &&
                                                                   x.MatchActivation != 1 &&
                                                                   x.MatchActivation != 2 &&
                                                                   x.Time > date);

            return(_standingService.GetStandings(teamsList, matchesList));
        }