public void InserirNovoJogo(Jogo jogo)
        {
            ValidarJogo(jogo);

            _jogoDAO = new JogoDAO();
            var linhasAfetadas = _jogoDAO.InserirJogo(jogo);

            if (linhasAfetadas == 0)
            {
                throw new JogoNaoCadastradoException();
            }
        }