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

Version Path
renalware-core-2.0.127 app/models/renalware/pathology/observation_for_patient_observation_description_query.rb
renalware-core-2.0.126 app/models/renalware/pathology/observation_for_patient_observation_description_query.rb
renalware-core-2.0.125 app/models/renalware/pathology/observation_for_patient_observation_description_query.rb
renalware-core-2.0.124 app/models/renalware/pathology/observation_for_patient_observation_description_query.rb
renalware-core-2.0.123 app/models/renalware/pathology/observation_for_patient_observation_description_query.rb