class PriceType < InvoicingRecord
  def ht?
    id == 1
  end
  
  def ttc?
    id == 2
  end
end
