using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oPatientNumberControl { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _patNumThreshold = 0; public int patNumThreshold { get {return this._patNumThreshold;} set {this._patNumThreshold = value;} } private int _patNumCurrent = 0; public int patNumCurrent { get {return this._patNumCurrent;} set {this._patNumCurrent = value;} } }