Sha256: 91536e31be232892a7552e0c6033797e3030521e59beacc24a962a34357cfbf1
Contents?: true
Size: 377 Bytes
Versions: 35
Compression:
Stored size: 377 Bytes
Contents
# When executed this job updates rolling statistics for a patient's # last past 12 HD sessions. module Renalware module HD class UpdateRollingPatientStatisticsJob < ApplicationJob queue_as :hd_patient_statistics # :reek:UtilityFunction def perform(patient) UpdateRollingPatientStatistics.new(patient: patient).call end end end end
Version data entries
35 entries across 35 versions & 1 rubygems