14 lines
308 B
Ruby
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
|