source: Scheduling/trunk/cs/bsdx0200GUISourceCode/RadiologyExam.cs@ 1731

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

Absorbed all changed from Radiology Support branch.
Patient and Provider classes now serializable to address new bug: Availablity slots cannot be saved b/c these classes are not serializable.

File size: 840 bytes
Line 
1/* Licensed under LGPL */
2
3using System;
4using System.Collections.Generic;
5using System.Linq;
6using System.Text;
7
8namespace IndianHealthService.ClinicalScheduling
9{
10 /// <summary>
11 /// Class to stand for a Radiology Exam Order from file 75.1 (RAD/NUC MED ORDERS)
12 /// IEN: IEN in file 75.1
13 /// Status: Text: Pending or Hold
14 /// Procedure: Text
15 /// RequestDate: Time procedure was requested by physician
16 /// </summary>
17 public class RadiologyExam
18 {
19 public int IEN { get; set; }
20 public string Status { get; set; }
21 public string Procedure { get; set; }
22 public DateTime RequestDate { get; set; }
23
24 public override string ToString()
25 {
26 return Procedure + "\t" + "Requested: " + RequestDate.ToString();
27 }
28 }
29}
Note: See TracBrowser for help on using the repository browser.