class PurchasedItem < ApplicationRecord
  belongs_to :product
  belongs_to :ticket

  # attr_accessor :total
  
  def total
    if product
      return product.total * quantity
    else
      return 0
    end
  end

end