Element Interface (IShoppingCartElement):?
- The IShoppingCartElement interface declares the Accept method, which allows
the element to accept a visitor. Each element (like Book, Fruit) will implement this
interface to allow a visitor to operate on it.
public interface IShoppingCartElement
void Accept(IShoppingCartVisitor visitor);