Sha256: acb6e801e81c1c8171f26c9fbea093579b25c7246f99425427985f2765beac0b

Contents?: true

Size: 452 Bytes

Versions: 1

Compression:

Stored size: 452 Bytes

Contents

module HealthDataStandards
  module Util
    # General helpers for working with codes and code systems
    class QRDATemplateHelper
      
      def self.definition_for_template_id(template_id)
        template_id_map[template_id]
      end
      
      def self.template_id_map
        template_id_file = File.expand_path('../qrda_template_oid_map.json', __FILE__)
        JSON.parse(File.read(template_id_file))
      end
      
    end
  end
end


Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
health-data-standards-2.0.0 lib/health-data-standards/util/qrda_template_helper.rb