Sha256: f054027d04f2be53138126651ba5c8486d435621df176c30e1b6acafce74a489
Contents?: true
Size: 365 Bytes
Versions: 13
Compression:
Stored size: 365 Bytes
Contents
module Roqua module Healthy module A19 class CorrectPatientCheck attr_reader :patient_id, :record def initialize(patient_id, record) @patient_id = patient_id @record = record end def check record[:identities].any? { |i| i[:ident] == patient_id } end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems