Files
baclight/app/services/automation_service/employer_update.rb
T
2026-05-06 13:28:16 -04:00

14 lines
374 B
Ruby

module AutomationService
class EmployerUpdate
def initialize(employer_identifier, full_sync = false)
@employer_identifier = employer_identifier
@full_sync = full_sync
end
def call
UpdateEmployerJob.new.perform(employer_identifier: @employer_identifier, full_sync: @full_sync)
end
end
end