1 2 3 4 5 6 7 8 9
class Customer def initialize(cart) @cart = cart end def add_to_cart(product) @cart.add(product) end end