Package br.com.buyFast.model

Examples of br.com.buyFast.model.Product


  /**
   * Construtor padrĂ£o.
   */
  public ShopController() {
    this.product = new Product();
    this.product.setCategory(new Category());
    this.searchProduct = new Product();
    this.searchProduct.setCategory(new Category());
  }
View Full Code Here


   * @return string com o caminho de cadastro de produtos.
   */
  public String registerProduct() {
    this.smallImageFileUpload = null;
    this.imageFileUpload = null;
    this.product = new Product();
    this.product.setCategory(new Category());
    return "registerProduct";
  }
View Full Code Here

TOP

Related Classes of br.com.buyFast.model.Product

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.