
public class CustomerTest {

	public static void main(String[] args) {
		
		Customer cust1 = new Customer();
		cust1.customerID = 1;
		cust1.name = "John Smith";
		cust1.emailAddress = "john@example.com";
		
		
	}

}
