using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oPatientsProgress { private int _primaryID = 0; public int primaryID { get {return this._primaryID;} set {this._primaryID = value;} } private int _patientID = 0; public int patientID { get {return this._patientID;} set {this._patientID = value;} } private int _progressStep = 0; public int progressStep { get {return this._progressStep;} set {this._progressStep = value;} } private DateTime _completionDate = DateTime.MinValue; public DateTime completionDate { get {return this._completionDate;} set {this._completionDate = value;} } }