public double purchasePrice () {
return getListPrice() * (1 + taxRate);
}
public int compareCustomer (Customer other) {
int compare = getName().compareTo(other.getName());
if (compare == 0) {
compare = getID() - other.getID();
}
return compare
}