ProductDAO repository = new ProductDAO();
return repository.getProductsByCategory(categoryId);
}
public Collection<ProductListing> searchProductsByNameOrDescription(String searchTerm) {
ProductDAO repository = new ProductDAO();
return repository.searchProductsByNameOrDescription(searchTerm);
}