aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/wholesale_product.rb
blob: 5c6c15391c3e395d43000bedd3b53c2848169e37 (plain) (blame)
1
2
3
4
5
6
7
8
9
class WholesaleProduct < ActiveRecord::Base

  after_initialize :set_prices

  def set_prices
    self.msrp = 2 * wholesale if wholesale
  end

end