]> git.mxchange.org Git - jproduct-core.git/blobdiff - src/org/mxchange/jshopcore/model/customer/Customer.java
added equals()/hashCode() for easier checking
[jproduct-core.git] / src / org / mxchange / jshopcore / model / customer / Customer.java
index 9ac6ae6f4ccf33d1116783cf4a47384138ac0d80..d2bd2b356744ba42ad66cdb9e0eb3bd971be99c9 100644 (file)
@@ -146,4 +146,10 @@ public interface Customer extends Serializable {
         * @param customerStatus Account status
         */
        void setCustomerAccountStatus (final CustomerAccountStatus customerStatus);
+
+       @Override
+       boolean equals (final Object object);
+
+       @Override
+       int hashCode ();
 }