source: Scheduling/trunk/cs/bsdx0200GUISourceCode/Patient.cs@ 1107

Last change on this file since 1107 was 1107, checked in by Sam Habiel, 13 years ago

Patient class added. Simple class to represent guess what.

File size: 940 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace 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.