public async Task <ResponseDTO <PagedList <ProductResponse> > > Search(ProductSearchRequest search)
        {
            var resp = await _productsApplicationService.SearchProductsByNameAsync(search);

            return(resp);
        }