1 /**
2 * Extension Point initial generated at: Thu Jul 03 22:38:37 CEST 2008
3 */
4 package org.company.thesandbox.domain;
5
6 /**
7 *
8 *
9 * @author Generated by Mod4j BusinessDomain DSL
10 */
11 public class Product extends ProductImplBase {
12
13 /**
14 * Default no-argument constructor for Product
15 */
16 protected Product() {
17
18 }
19
20 /**
21 * Minimal constructor for Product
22 *
23 * @param productNumnber
24 * (string)
25 * @param price
26 * (integer)
27 */
28 public Product(String productNumnber, int price) {
29 super(productNumnber, price);
30 }
31
32 }