using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oAdjustments { 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 int _ModifyUser = 0; public int ModifyUser { get {return this._ModifyUser;} set {this._ModifyUser = value;} } private DateTime _AdjustmentDate = DateTime.MinValue; public DateTime AdjustmentDate { get {return this._AdjustmentDate;} set {this._AdjustmentDate = value;} } private DateTime _CreateDate = DateTime.MinValue; public DateTime CreateDate { get {return this._CreateDate;} set {this._CreateDate = value;} } private DateTime _ModifyDate = DateTime.MinValue; public DateTime ModifyDate { get {return this._ModifyDate;} set {this._ModifyDate = value;} } private string _Extremities = String.Empty; public string Extremities { get {return this._Extremities;} set {this._Extremities = value;} } }