using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oXRays { private int _ID = 0; public int ID { get {return this._ID;} set {this._ID = value;} } private int _PatientID = 0; public int PatientID { get {return this._PatientID;} set {this._PatientID = value;} } private int _CreateUser = 0; public int CreateUser { get {return this._CreateUser;} set {this._CreateUser = value;} } private DateTime _CreateDate = DateTime.MinValue; public DateTime CreateDate { get {return this._CreateDate;} set {this._CreateDate = value;} } private DateTime _XRayDate = DateTime.MinValue; public DateTime XRayDate { get {return this._XRayDate;} set {this._XRayDate = value;} } private string _Notes = String.Empty; public string Notes { get {return this._Notes;} set {this._Notes = value;} } private string _LateralCervical = String.Empty; public string LateralCervical { get {return this._LateralCervical;} set {this._LateralCervical = value;} } private string _LateralCervicalPath = String.Empty; public string LateralCervicalPath { get {return this._LateralCervicalPath;} set {this._LateralCervicalPath = value;} } private string _APCervical = String.Empty; public string APCervical { get {return this._APCervical;} set {this._APCervical = value;} } private string _APCervicalPath = String.Empty; public string APCervicalPath { get {return this._APCervicalPath;} set {this._APCervicalPath = value;} } private string _LateralLumbar = String.Empty; public string LateralLumbar { get {return this._LateralLumbar;} set {this._LateralLumbar = value;} } private string _LateralLumbarPath = String.Empty; public string LateralLumbarPath { get {return this._LateralLumbarPath;} set {this._LateralLumbarPath = value;} } private string _APLumbar = String.Empty; public string APLumbar { get {return this._APLumbar;} set {this._APLumbar = value;} } private string _APLumbarPath = String.Empty; public string APLumbarPath { get {return this._APLumbarPath;} set {this._APLumbarPath = value;} } }