/**
*
* Customer constructor requiring three
* attributes to create. Subclasses will be forced to call
* this constructor and set these required values.
*
* @param customerID String the customer's Identification
* @param customerName String the customer's name.
* @param customerPhone String the customer's Phone number.
*/
//Constructors
public Customer(){
this.customerName = "";
this.customerPhone = "";
}
//Constructor
public Customer(String customerID, String customerName, String customerPhone){
public void setCustomerPhone(String customerPhone){
this.customerPhone = customerPhone;
}
/**
*
* displayCustomerInformation is used to display the customer's information in the console.
*
* no parameters
*
**/
public String displayCustomerInformation(){