using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oPatientsPracticeExtras { 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 _PracticeExtraID = 0; public int PracticeExtraID { get {return this._PracticeExtraID;} set {this._PracticeExtraID = value;} } }