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