Files

8 lines
122 B
Java

package net.itsthesky.projetbut2.ocp;
public interface Criteria<Product> {
boolean isSatisfied(Product product);
}