
public class Customer {

	int customerId = 1;
	char status = 'N';	// N - New, O - Old
	double totalPurchases = 199.99;
	
}
