public async Task <ActionResult> Get(int eventoId)
        {
            try
            {
                var result = await eventoAppService.ObterEventoAsyncPorEventoId(eventoId, true);

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