source:
EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/pt/demog/model/PatientSelectVO.as@
1227
| Last change on this file since 1227 was 1227, checked in by , 14 years ago | |
|---|---|
| File size: 407 bytes | |
| Line | |
|---|---|
| 1 | package gov.va.med.edp.pt.demog.model |
| 2 | { |
| 3 | import gov.va.med.edp.pt.demog.*; |
| 4 | public class PatientSelectVO |
| 5 | { |
| 6 | public var dfn: String = ""; |
| 7 | public var name: String = ""; |
| 8 | public var dob: String = ""; |
| 9 | public var ssn: String = ""; |
| 10 | |
| 11 | public function toString():String |
| 12 | { |
| 13 | return "dfn=" + dfn + "\t" + |
| 14 | "name=" + name + "\t" + |
| 15 | "dob=" + dob + "\t" + |
| 16 | "ssn=" + ssn; |
| 17 | } |
| 18 | } |
| 19 | } |
Note:
See TracBrowser
for help on using the repository browser.
