Sha256: 91c29fda42d76221b881ad6db9f04d799d6c0655e04435971f6492e347575a09
Contents?: true
Size: 596 Bytes
Versions: 47
Compression:
Stored size: 596 Bytes
Contents
module HealthDataStandards module Import module Cat1 class EntryPackage attr_accessor :importer_type, :hqmf_oid, :status def initialize (type, oid, stat = nil) self.importer_type = type self.hqmf_oid = oid self.status = stat end def package_entries (doc, nrh) entries = self.importer_type.create_entries(doc, nrh) entries.each do |entry| entry.oid = self.hqmf_oid entry.status = self.status end entries end end end end end
Version data entries
47 entries across 47 versions & 1 rubygems