FileDocCategorySizeDatePackage
Customer.javaAPI DocExample677Thu Oct 13 14:57:40 BST 2005com.samscdrental.model

Customer

public class Customer extends Object implements Serializable

Title: Sams CD Rental Store

Description:

Copyright: Copyright (c) 2004

Company:

author
Ken Pugh
version
1.0

Fields Summary
private static final long
serialVersionUID
private CustomerID
theCustomerID
private Name
theName
Constructors Summary
public Customer(Name aName, CustomerID aCustomerID)

		theName = aName;
		theCustomerID = aCustomerID;
	
Methods Summary
public CustomerIDgetCustomerID()

 

	  
	
		return theCustomerID;
	
public NamegetName()

		return theName;