private PtsAndGoalsDto GetPtsAndGoals(MatchDto match)
        {
            var homeTeamPts = MatchHelper.GetNumberOfHomeTeamPoints(match.Score);

            return(new PtsAndGoalsDto
            {
                HomeTeamPts = homeTeamPts,
                AwayTeamPts = homeTeamPts == 3 ? 0 : homeTeamPts == 1 ? 1 : 3,
                HomeTeamGoals = MatchHelper.GetNumberOfGoals(match.Score, homeTeam: true),
                AwayTeamGoals = MatchHelper.GetNumberOfGoals(match.Score, homeTeam: false)
            });
        }