negos_app/app/models/reseaux.rb
2017-05-18 01:21:04 +02:00

14 lines
308 B
Ruby

class Reseaux < ActiveRecord::Base
belongs_to :chef_reseau, :class_name => "Customer"
has_many :reseaux_customers
has_many :customers, :through => :reseaux_customers
has_many :needs, :through => :customers
has_many :offer_reseauxes
has_many :offers, :through => :offer_reseauxes
end