enterprise.rb 209 Bytes
# An enterprise is a kind of organization. According to the system concept,
# only enterprises can offer products and services.
class Enterprise < Organization
  has_many :products, :dependent => :destroy
end