From 7e34215b789ebdcd53abb6e8429319823a8aa728 Mon Sep 17 00:00:00 2001 From: sam Date: Sun, 20 Mar 2011 07:22:52 +0000 Subject: [PATCH] Patient class added. Simple class to represent guess what. --- cs/bsdx0200GUISourceCode/Patient.cs | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 cs/bsdx0200GUISourceCode/Patient.cs diff --git a/cs/bsdx0200GUISourceCode/Patient.cs b/cs/bsdx0200GUISourceCode/Patient.cs new file mode 100644 index 0000000..d75b7ec --- /dev/null +++ b/cs/bsdx0200GUISourceCode/Patient.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace IndianHealthService.ClinicalScheduling +{ + /// + /// Puppet standing for a Real Patient + /// + public class Patient + { + public int DFN { get; set; } + public string Name { get; set; } + public DateTime DOB { get; set; } + public string ID { get; set; } + public string HRN { get; set; } + public List Appointments { get; set; } + public string Street { get; set; } + public string City { get; set; } + public string State { get; set; } + public string Zip { get; set; } + public string Country { get; set; } + public string Email { get; set; } + public string HomePhone { get; set; } + public string WorkPHone { get; set; } + public string CellPhone { get; set; } + } +}