source: Scheduling/branches/Radiology-Support/cs/bsdx0200GUISourceCode/RadiologyExam.cs@ 1168

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

Lots of Documentation updates.
Absorption of all updates from trunk.
CGView: Changes in Appointment Menu; Handlers for these; Radiology Support
DRadExamSelect: Change in form design; auto print appointment slip implemented.

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.