using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oPatientQue { private int _patientID = 0; public int patientID { get {return this._patientID;} set {this._patientID = value;} } private int _patientNumber = 0; public int patientNumber { get {return this._patientNumber;} set {this._patientNumber = value;} } private DateTime _inDate = DateTime.MinValue; public DateTime inDate { get {return this._inDate;} set {this._inDate = value;} } private string _firstName = String.Empty; public string firstName { get {return this._firstName;} set {this._firstName = value;} } private string _lastName = String.Empty; public string lastName { get {return this._lastName;} set {this._lastName = value;} } }