using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMedicalPatientVisitLog { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _surfaceItemId = 0; public int surfaceItemId { get {return this._surfaceItemId;} set {this._surfaceItemId = value;} } private DateTime _signInDate = DateTime.MinValue; public DateTime signInDate { get {return this._signInDate;} set {this._signInDate = value;} } private DateTime _signOutDate = DateTime.MinValue; public DateTime signOutDate { get {return this._signOutDate;} set {this._signOutDate = value;} } private string _note = String.Empty; public string note { get {return this._note;} set {this._note = value;} } }