Ejemplo n.º 1
0
        public async Task <IActionResult> Get(string name)
        {
            ResultResponseObject <IEnumerable <ProductModelResponse> > result = await _productApplicationService.GetProductsFilter(name);

            return(Response(result));
        }