public IActionResult Get()
        {
            ListAllProducts listAllProducts = new ListAllProducts();
            var             result          = _broker.Execute(listAllProducts);

            return(Ok(result));
            //return Ok(new ListProductsResponse { Products = result });
        }