Last change
on this file since 1109 was 1107, checked in by Sam Habiel, 14 years ago |
Patient class added. Simple class to represent guess what.
|
File size:
940 bytes
|
Rev | Line | |
---|
[1107] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 |
|
---|
| 6 | namespace IndianHealthService.ClinicalScheduling
|
---|
| 7 | {
|
---|
| 8 | /// <summary>
|
---|
| 9 | /// Puppet standing for a Real Patient
|
---|
| 10 | /// </summary>
|
---|
| 11 | public class Patient
|
---|
| 12 | {
|
---|
| 13 | public int DFN { get; set; }
|
---|
| 14 | public string Name { get; set; }
|
---|
| 15 | public DateTime DOB { get; set; }
|
---|
| 16 | public string ID { get; set; }
|
---|
| 17 | public string HRN { get; set; }
|
---|
| 18 | public List<CGAppointment> Appointments { get; set; }
|
---|
| 19 | public string Street { get; set; }
|
---|
| 20 | public string City { get; set; }
|
---|
| 21 | public string State { get; set; }
|
---|
| 22 | public string Zip { get; set; }
|
---|
| 23 | public string Country { get; set; }
|
---|
| 24 | public string Email { get; set; }
|
---|
| 25 | public string HomePhone { get; set; }
|
---|
| 26 | public string WorkPHone { get; set; }
|
---|
| 27 | public string CellPhone { get; set; }
|
---|
| 28 | }
|
---|
| 29 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.