class Hl7Patient

Public Instance Methods

set_patient_id(args) click to toggle source
# File lib/ruby_astm/HL7/hl7_patient.rb, line 7
def set_patient_id(args)
        if line = args[:line]
                unless line.fields[3].blank?
                        self.patient_id = line.fields[3].strip
                end
        end
end
set_sequence_number(args) click to toggle source
# File lib/ruby_astm/HL7/hl7_patient.rb, line 3
def set_sequence_number(args)
        
end