Sha256: b373dd8aa18ae3f156093a8c2653f6f260571a4859db1f4de7f39bd7a104049a
Contents?: true
Size: 483 Bytes
Versions: 28
Compression:
Stored size: 483 Bytes
Contents
require_dependency "renalware/pathology" module Renalware module Pathology class ObservationForPatientObservationDescriptionQuery def initialize(patient, observation_description) @patient = patient @observation_description = observation_description end def call @patient .observations .where(description: @observation_description) .order(observed_at: :desc) .first end end end end
Version data entries
28 entries across 28 versions & 1 rubygems