Package com.apress.prospring.ch19.business

Examples of com.apress.prospring.ch19.business.ProductManager


   * @param name The name
   * @param description The description
   * @return Product instance
   */
  private Product createProduct(int productId, String name, String description) {
    Product product = new Product();
    product.setProductId(productId);
    product.setName(name);
    product.setDescription(description);
   
    return product;
  }
View Full Code Here

TOP

Related Classes of com.apress.prospring.ch19.business.ProductManager

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.