public IActionResult Listar()
        {
            IEnumerable <AnuncioListarResponse> response = _anuncioAppService.Listar(new AnuncioListarRequest());

            return(Ok(response));
        }