public async Task <ActionResult> Get(string tema)
        {
            try
            {
                var result = await eventoAppService.ObterEventoAsyncPorTema(tema, true);

                return(Ok(result));
            }
            catch (System.Exception)
            {
                return(this.StatusCode(StatusCodes.Status500InternalServerError, "Banco de dados Falhou!"));
            }
        }