Guest User

Untitled

a guest
Jan 19th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.20 KB | None | 0 0
  1. class LineItem < ActiveRecord::Base
  2.     belongs_to :cart
  3.     belongs_to :gift
  4.     def numAvailable
  5.         gift.quantities
  6.     end
  7.     # Calculate full price of gift in cart
  8.     def full_price
  9.         price * quantity
  10.     end
  11. end
Add Comment
Please, Sign In to add comment