View Javadoc

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    * A Customer represents a Person who orders from the RecordShop.
8    * 
9    * @author Generated by Mod4j BusinessDomain DSL
10   */
11  public class Customer extends CustomerImplBase {
12  
13      /**
14       * Default no-argument constructor for Customer
15       */
16      protected Customer() {
17          super();
18      }
19  
20      /**
21       * Minimal constructor for Customer
22       * 
23       * @param firstName
24       *            (string) First name of the person.
25       * @param lastName
26       *            (string) Last name of the person.
27       * @param customerNr
28       *            (integer)
29       */
30      public Customer(String firstName, String lastName, int customerNr) {
31          super(firstName, lastName, customerNr);
32      }
33  
34  }