Sha256: 2ed31df2ff3b32a573debe72015f782cf9592a04274fd74a43eb06415d67a6df

Contents?: true

Size: 504 Bytes

Versions: 28

Compression:

Stored size: 504 Bytes

Contents

require_dependency "renalware/pathology"

module Renalware
  module Pathology
    class ObservationForPatientRequestDescriptionQuery
      def initialize(patient, request_description)
        @patient = patient
        @observation_description = request_description.required_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

Version Path
renalware-core-2.0.8 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.7 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.5 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.4 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.3 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.2 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.1 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.0 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.0.pre.rc13 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.0.pre.rc11 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.0.pre.rc10 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.0.pre.rc9 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.0.pre.rc8 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.0.pre.rc7 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.0.pre.rc6 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.0.pre.rc5 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.0.pre.rc4 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.0.pre.rc3 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.0.pre.rc1 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.0.pre.beta12 app/models/renalware/pathology/observation_for_patient_request_description_query.rb