using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oPatientsHistory { 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 string _healthJobs = String.Empty; public string healthJobs { get {return this._healthJobs;} set {this._healthJobs = value;} } private string _healthSpecifiedConditions = String.Empty; public string healthSpecifiedConditions { get {return this._healthSpecifiedConditions;} set {this._healthSpecifiedConditions = value;} } private string _healthSeriousConditions = String.Empty; public string healthSeriousConditions { get {return this._healthSeriousConditions;} set {this._healthSeriousConditions = value;} } private string _healthFamilyConditions = String.Empty; public string healthFamilyConditions { get {return this._healthFamilyConditions;} set {this._healthFamilyConditions = value;} } private string _healthTreated = String.Empty; public string healthTreated { get {return this._healthTreated;} set {this._healthTreated = value;} } private string _healthHereditaryConditions = String.Empty; public string healthHereditaryConditions { get {return this._healthHereditaryConditions;} set {this._healthHereditaryConditions = value;} } private string _healthPastCurrentConditions = String.Empty; public string healthPastCurrentConditions { get {return this._healthPastCurrentConditions;} set {this._healthPastCurrentConditions = value;} } private string _socialPastCurrentActivities = String.Empty; public string socialPastCurrentActivities { get {return this._socialPastCurrentActivities;} set {this._socialPastCurrentActivities = value;} } private string _generalSymptoms = String.Empty; public string generalSymptoms { get {return this._generalSymptoms;} set {this._generalSymptoms = value;} } private string _childTraumaticEvent = String.Empty; public string childTraumaticEvent { get {return this._childTraumaticEvent;} set {this._childTraumaticEvent = value;} } private string _drugsTaken = String.Empty; public string drugsTaken { get {return this._drugsTaken;} set {this._drugsTaken = value;} } private string _dailyLivingActivities = String.Empty; public string dailyLivingActivities { get {return this._dailyLivingActivities;} set {this._dailyLivingActivities = value;} } }