using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oVisitLog { 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 DateTime _inDate = DateTime.MinValue; public DateTime inDate { get {return this._inDate;} set {this._inDate = value;} } private DateTime _outDate = DateTime.MinValue; public DateTime outDate { get {return this._outDate;} set {this._outDate = value;} } }