public GameLog GameLogFor(
            string season,
            string playerName,
            string position    = "",
            bool sendToConsole = true)
        {
            if (!string.IsNullOrEmpty(position) && position == "KK")
            {
                position = "K";
            }
            var model = new PlayerReportModel
            {
                Season     = season,
                PlayerName = playerName,
                Position   = position
            };

            if (position == "K")
            {
                model.GameLog = _repo.GetKickerStats(model);
            }
            else
            {
                model.GameLog = _repo.GetGameStats(model);
            }

            if (sendToConsole)
            {
                _repo.SendToConsole(
                    model);
            }

            var gameLog = new GameLog
            {
                GameStatsList = model.GameLog
            };

            return(gameLog);
        }