return repository.getFeaturedProducts();
}
public Collection<Product> getProductsBySubCategory(Serializable subCategoryId) {
SubCategoryService subCategoryService = new SubCategoryService();
SubCategory subCategory = subCategoryService.getById(subCategoryId);
return subCategory.getProducts();
}