Files
baclight/app/services/automation_service/employer_update.rb
T

14 lines
374 B
Ruby
Raw Normal View History

2026-04-15 08:12:47 -04:00
module AutomationService
class EmployerUpdate
2026-04-17 15:35:10 -04:00
def initialize(employer_identifier, full_sync = false)
@employer_identifier = employer_identifier
2026-04-15 08:12:47 -04:00
@full_sync = full_sync
end
def call
2026-04-17 15:35:10 -04:00
UpdateEmployerJob.new.perform(employer_identifier: @employer_identifier, full_sync: @full_sync)
2026-04-15 08:12:47 -04:00
end
end
2026-05-06 13:28:16 -04:00
end