class Employer < ApplicationRecord
has_many :participants
has_many :workers, through: :participants
# Association with Vendor if needed
end