public class Customer { private String lastName; private String firstName; private String phone; public Customer(String first, String last, String phone) { // to be implemented } // end constructor public String toString() { // to be implemented return null; } // end toString } // end class Customer