Class: CaTissue::ParticipantMedicalIdentifier

Inherits:
Object
  • Object
show all
Includes:
CaRuby::Resource::Unique, Resource
Defined in:
lib/catissue/domain/participant_medical_identifier.rb,
lib/catissue/domain/uniquify.rb

Overview

The ParticipantMedicalIdentifier domain class.

Instance Method Summary collapse

Methods included from Resource

#database, included, #tolerant_match?

Methods included from Annotatable

#annotation_proxy, #create_proxy, #method_missing

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class CaTissue::Annotatable

Instance Method Details

#medical_record_number=(value) ⇒ Object

Sets this ParticipantMedicalIdentifier’s medical record number to the given value. A Numeric value is converted to a String.



14
15
16
17
# File 'lib/catissue/domain/participant_medical_identifier.rb', line 14

def medical_record_number=(value)
  value = value.to_s if value
  setMedicalRecordNumber(value)
end