public ProductFamilyResponse()
 {
     this.Products = new ProductResponseList();
 }
예제 #2
0
        public async Task <IActionResult> Search()
        {
            ProductResponseList list = await _productUseCase.Search();

            return(Ok(list));
        }