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.58 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.57 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.56 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.55 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.54 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.53 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.52 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.51 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.50 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.48 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.47 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.46 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.45 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.44 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.43 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.42 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.41 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.40 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.39 app/models/renalware/pathology/observation_for_patient_request_description_query.rb
renalware-core-2.0.38 app/models/renalware/pathology/observation_for_patient_request_description_query.rb