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.101 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.100 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.99 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.98 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.97 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.96 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.95 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.94 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.93 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.92 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.91 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.90 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.89 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.88 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.87 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.86 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.85 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.84 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.83 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.82 app/models/renalware/pathology/observation_for_patient_request_description_query.rb