package PatternStrategy.cart;

import java.util.ArrayList;

/** Demo file, it may not be correct and/or complete.
 * Please watch the corresponding lecture(s) for more explanations.
 * @author ashesh
 */
public interface ShippingOption {
	double calculateCharges(ArrayList<Item> list);
}
