Guest User

Untitled

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