Files
baclight/app/services/employer_cards/get_queued_counts.rb
T

13 lines
349 B
Ruby
Raw Normal View History

2026-03-13 08:47:13 -04:00
module EmployerCards
2026-03-16 12:09:45 -04:00
class GetQueuedCounts
2026-03-13 08:47:13 -04:00
def initialize()
@employer_pl_plan_keys = IdCard::Configuration.active.pluck(:pl_plan_key).join(',')
end
def call
2026-03-16 12:09:45 -04:00
CallStoredProc.new('BrittonGetQueuedIdCardCountsTPA', { PLPlanKeys: @employer_pl_plan_keys }).call.to_ary
2026-03-13 08:47:13 -04:00
end
end
end