Sha256: c2c9f59e96d2ef77ef0d59e6bcf544365c5d1030351bb7f942be5785acdb5942

Contents?: true

Size: 560 Bytes

Versions: 149

Compression:

Stored size: 560 Bytes

Contents

# frozen_string_literal: true

require_dependency "renalware/pathology"

# Responsible for finding Observations for the specified descriptions.
module Renalware
  module Pathology
    class ObservationsForDescriptionsQuery
      def initialize(relation: Observation.all, descriptions: ObservationDescription.all)
        @relation = relation
        @descriptions = descriptions
      end

      def call
        @relation
          .joins(:description)
          .preload(:description)
          .where(description: @descriptions)
      end
    end
  end
end

Version data entries

149 entries across 149 versions & 1 rubygems

Version Path
renalware-core-2.1.1 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.1.0 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.167 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.166 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.165 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.164 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.163 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.162 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.161 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.160 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.159 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.158 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.157 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.156 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.155 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.153 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.152 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.151 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.149 app/models/renalware/pathology/observations_for_descriptions_query.rb
renalware-core-2.0.148 app/models/renalware/pathology/observations_for_descriptions_query.rb