Customerpublic class Customer extends Object implements Serializable
Fields Summary |
---|
private int | id | private String | first | private String | last | private String | street | private String | city | private String | state | private String | zip |
Constructors Summary |
---|
public Customer()
| public Customer(String first, String last, String street, String city, String state, String zip)
this.first = first;
this.last = last;
this.street = street;
this.city = city;
this.state = state;
this.zip = zip;
|
|