using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oPatientsContacts { 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 _contactType = 0; public int contactType { get {return this._contactType;} set {this._contactType = value;} } private int _title = 0; public int title { get {return this._title;} set {this._title = 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 int _purgeUser = 0; public int purgeUser { get {return this._purgeUser;} set {this._purgeUser = value;} } private DateTime _dateOfBirth = DateTime.MinValue; public DateTime dateOfBirth { get {return this._dateOfBirth;} set {this._dateOfBirth = 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 DateTime _purgeDate = DateTime.MinValue; public DateTime purgeDate { get {return this._purgeDate;} set {this._purgeDate = value;} } private bool _isPurged = false; public bool isPurged { get {return this._isPurged;} set {this._isPurged = 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;} } private string _idNumber = String.Empty; public string idNumber { get {return this._idNumber;} set {this._idNumber = value;} } private string _telHome = String.Empty; public string telHome { get {return this._telHome;} set {this._telHome = value;} } private string _telWork = String.Empty; public string telWork { get {return this._telWork;} set {this._telWork = value;} } private string _mobileNumber = String.Empty; public string mobileNumber { get {return this._mobileNumber;} set {this._mobileNumber = value;} } private string _emailAddress = String.Empty; public string emailAddress { get {return this._emailAddress;} set {this._emailAddress = value;} } private string _employerName = String.Empty; public string employerName { get {return this._employerName;} set {this._employerName = value;} } private string _occupationJob = String.Empty; public string occupationJob { get {return this._occupationJob;} set {this._occupationJob = value;} } private string _postalAddress = String.Empty; public string postalAddress { get {return this._postalAddress;} set {this._postalAddress = value;} } private string _physicalAddress = String.Empty; public string physicalAddress { get {return this._physicalAddress;} set {this._physicalAddress = value;} } private string _contactRelation = String.Empty; public string contactRelation { get {return this._contactRelation;} set {this._contactRelation = value;} } }