public IActionResult Get(Guid id)
        {
            try
            {
                Jogo _jogo = _repository.BuscarJogoId(id);

                if (_jogo == null)
                {
                    return(NoContent());
                }

                return(Ok(_jogo));
            }catch (Exception _e) {
                return(BadRequest(_e.Message));

                throw;
            }
        }