Sha256: cb2828e6dc7a2de9a7adc8182ab79c6491905714de99cb760e523e0eadf76128

Contents?: true

Size: 535 Bytes

Versions: 106

Compression:

Stored size: 535 Bytes

Contents

# frozen_string_literal: true

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

106 entries across 106 versions & 1 rubygems

Version Path
renalware-core-2.0.81 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.80 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.79 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.78 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.77 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.76 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.75 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.74 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.73 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.72 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.71 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.70 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.69 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.68 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.67 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.64 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.63 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.62 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.61 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.60 app/models/renalware/pathology/observation_for_patient_request_description_query.rb