Files
baclight/app/services/id_card_queue_service/get_queued_counts.rb
T
2026-03-20 10:46:53 -04:00

13 lines
346 B
Ruby

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