Sha256: 1dbff03f40954929679e0d93433394c62d29d2d1a71ce0c01634a20bcca78efd
Contents?: true
Size: 381 Bytes
Versions: 35
Compression:
Stored size: 381 Bytes
Contents
module Renalware module HD class GenerateMonthlyStatisticsForPatientJob < ApplicationJob queue_as :hd_patient_statistics # :reek:UtilityFunction def perform(patient:, month:, year:) period = MonthPeriod.new(month: month, year: year) GenerateMonthlyStatisticsForPatient.new(patient: patient, period: period).call end end end end
Version data entries
35 entries across 35 versions & 1 rubygems