Last change
on this file since 1675 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
|
Rev | Line | |
---|
[1168] | 1 | /* Licensed under LGPL */
|
---|
| 2 |
|
---|
| 3 | using System;
|
---|
[1140] | 4 | using System.Collections.Generic;
|
---|
| 5 | using System.Linq;
|
---|
| 6 | using System.Text;
|
---|
| 7 |
|
---|
| 8 | namespace IndianHealthService.ClinicalScheduling
|
---|
| 9 | {
|
---|
| 10 | /// <summary>
|
---|
[1168] | 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
|
---|
[1140] | 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.