Files
baclight/app/services/employer_cards/get_queued_counts.rb
T
2026-03-16 12:09:45 -04:00

13 lines
349 B
Ruby

module EmployerCards
class GetQueuedCounts
def initialize()
@employer_pl_plan_keys = IdCard::Configuration.active.pluck(:pl_plan_key).join(',')
end
def call
CallStoredProc.new('BrittonGetQueuedIdCardCountsTPA', { PLPlanKeys: @employer_pl_plan_keys }).call.to_ary
end
end
end