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

15 lines
303 B
Ruby

module AutomationService
class EmployerPlansUpdate
def initialize(pl_plan_key)
@pl_plan_key = pl_plan_key
end
def call
UpdateEmployerPlansJob.new.perform(@pl_plan_key)
end
end
end
# AutomationService::MemberUpdate('13', 337710)