Class: NullEncounter
- Inherits:
-
Object
- Object
- NullEncounter
- Defined in:
- lib/aqi.rb
Defined Under Namespace
Classes: Service
Instance Method Summary collapse
- #city ⇒ Object
- #date_of_birth ⇒ Object
- #encounter_id ⇒ Object
- #gender ⇒ Object
- #location ⇒ Object
- #location_name ⇒ Object
- #place_of_service ⇒ Object
- #postal_code ⇒ Object
- #services ⇒ Object
- #state ⇒ Object
Instance Method Details
#city ⇒ Object
32 |
# File 'lib/aqi.rb', line 32 def city; "Ocala"; end |
#date_of_birth ⇒ Object
29 |
# File 'lib/aqi.rb', line 29 def date_of_birth; Time.now; end |
#encounter_id ⇒ Object
34 |
# File 'lib/aqi.rb', line 34 def encounter_id; 1; end |
#gender ⇒ Object
33 |
# File 'lib/aqi.rb', line 33 def gender; "M"; end |
#location ⇒ Object
35 |
# File 'lib/aqi.rb', line 35 def location; "1003"; end |
#location_name ⇒ Object
36 |
# File 'lib/aqi.rb', line 36 def location_name; "LROR"; end |
#place_of_service ⇒ Object
37 |
# File 'lib/aqi.rb', line 37 def place_of_service; "LROR"; end |
#postal_code ⇒ Object
30 |
# File 'lib/aqi.rb', line 30 def postal_code; "34476"; end |
#services ⇒ Object
38 39 40 |
# File 'lib/aqi.rb', line 38 def services [Service.new(Time.now, Time.now, "Dr. Perry Platypus")] end |
#state ⇒ Object
31 |
# File 'lib/aqi.rb', line 31 def state; "FL"; end |