using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IndianHealthService.ClinicalScheduling { /// /// TODO: Sam would like to document this later /// public class RadiologyExam { public int IEN { get; set; } public string Status { get; set; } public string Procedure { get; set; } public DateTime RequestDate { get; set; } public override string ToString() { return Procedure + "\t" + "Requested: " + RequestDate.ToString(); } } }