2. Within the customer.java class, create a method called setCustomerInfo and add an overloaded method setCustomerInfo
3. Depending on how the setCustomerInfo method is called, it does one of the following:
a. Sets the ID, name, address and phone no. for a Customer object (this is the minimum info. Needed for a new Customer) b. Sets the ID, name, address, phone no., and email address for a Customer object.
4. Create a new test class called CustomerTest
5. In the main method:
a. Create 2 object references to different Customer objects b. Use each variation of the setCustomerInfo method to provide information for each Customer object. c. Display the contents of each Customer object.