Sha256: 04c1d7417ad62721fb8518a579bc0d02019768b9b4fab7e391ee764157ed544b
Contents?: true
Size: 419 Bytes
Versions: 45
Compression:
Stored size: 419 Bytes
Contents
# frozen_string_literal: true require_dependency "renalware/pathology" module Renalware module Pathology class ObservationForPatientObservationDescriptionQuery pattr_initialize :patient, :observation_description def call patient .observations .where(description: observation_description) .order(observed_at: :desc) .first end end end end
Version data entries
45 entries across 45 versions & 1 rubygems