package ch9.large;

public interface PriceRule {
    double priceToAggregate(ShoppingCart cart);
}
