using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oPatientsBase { private int _primaryID = 0; public int primaryID { get {return this._primaryID;} set {this._primaryID = value;} } private int _patientNumber = 0; public int patientNumber { get {return this._patientNumber;} set {this._patientNumber = value;} } private int _patientType = 0; public int patientType { get {return this._patientType;} set {this._patientType = value;} } private int _title = 0; public int title { get {return this._title;} set {this._title = value;} } private int _genderSex = 0; public int genderSex { get {return this._genderSex;} set {this._genderSex = value;} } private int _totalChildren = 0; public int totalChildren { get {return this._totalChildren;} set {this._totalChildren = value;} } private int _registrationStatus = 0; public int registrationStatus { get {return this._registrationStatus;} set {this._registrationStatus = 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 _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private bool _isPurged = false; public bool isPurged { get {return this._isPurged;} set {this._isPurged = value;} } private decimal _birthHeight = 0; public decimal birthHeight { get {return this._birthHeight;} set {this._birthHeight = value;} } private decimal _birthWeight = 0; public decimal birthWeight { get {return this._birthWeight;} set {this._birthWeight = value;} } private decimal _currentHeight = 0; public decimal currentHeight { get {return this._currentHeight;} set {this._currentHeight = value;} } private decimal _currentWeight = 0; public decimal currentWeight { get {return this._currentWeight;} set {this._currentWeight = 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 _telNumber = String.Empty; public string telNumber { get {return this._telNumber;} set {this._telNumber = 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 _medicalAidOption = String.Empty; public string medicalAidOption { get {return this._medicalAidOption;} set {this._medicalAidOption = value;} } private string _medicalAid = String.Empty; public string medicalAid { get {return this._medicalAid;} set {this._medicalAid = value;} } private string _membershipNumber = String.Empty; public string membershipNumber { get {return this._membershipNumber;} set {this._membershipNumber = value;} } private string _mainMemberNames = String.Empty; public string mainMemberNames { get {return this._mainMemberNames;} set {this._mainMemberNames = value;} } private string _mainMemberIDNumber = String.Empty; public string mainMemberIDNumber { get {return this._mainMemberIDNumber;} set {this._mainMemberIDNumber = value;} } private string _profilePicURL = String.Empty; public string profilePicURL { get {return this._profilePicURL;} set {this._profilePicURL = value;} } private string _medicalAidPlanOption = String.Empty; public string medicalAidPlanOption { get {return this._medicalAidPlanOption;} set {this._medicalAidPlanOption = value;} } private string _emailAddress = String.Empty; public string emailAddress { get {return this._emailAddress;} set {this._emailAddress = 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 _childrenAges = String.Empty; public string childrenAges { get {return this._childrenAges;} set {this._childrenAges = 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;} } }