summaryrefslogtreecommitdiff
path: root/lib/customer.rb
blob: 68a647640d1f221767922549f54f7e30b1c1cf82 (plain)
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