Package com.ateam.webstore.model

Examples of com.ateam.webstore.model.SubCategory


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

TOP

Related Classes of com.ateam.webstore.model.SubCategory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.