using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMedicalPatientHistory { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _surfaceItemId = 0; public int surfaceItemId { get {return this._surfaceItemId;} set {this._surfaceItemId = value;} } private string _specifiedConditions = String.Empty; public string specifiedConditions { get {return this._specifiedConditions;} set {this._specifiedConditions = value;} } private string _seriousConditions = String.Empty; public string seriousConditions { get {return this._seriousConditions;} set {this._seriousConditions = value;} } private string _familyConditions = String.Empty; public string familyConditions { get {return this._familyConditions;} set {this._familyConditions = value;} } private string _familyTreated = String.Empty; public string familyTreated { get {return this._familyTreated;} set {this._familyTreated = value;} } private string _hereditaryConditions = String.Empty; public string hereditaryConditions { get {return this._hereditaryConditions;} set {this._hereditaryConditions = value;} } private string _pastCurrentConditions = String.Empty; public string pastCurrentConditions { get {return this._pastCurrentConditions;} set {this._pastCurrentConditions = value;} } private string _socialConditions = String.Empty; public string socialConditions { get {return this._socialConditions;} set {this._socialConditions = value;} } }