Guest User

Untitled

a guest
Feb 20th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. class CartItem
  2. include Reloadable
  3. attr_reader :product, :quantity
  4.  
  5. def initialize(product)
  6. @product = product
  7. @quantity = 1
  8. end
  9.  
  10. def increment_quantity
  11. @quantity += 1
  12. end
  13.  
  14. def title
  15. @product.title
  16. end
  17.  
  18. def price
  19. @product.price
  20. end
  21. end
Add Comment
Please, Sign In to add comment