using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMedicalPatientDiagnosis { 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 int _diagnosisId = 0; public int diagnosisId { get {return this._diagnosisId;} set {this._diagnosisId = value;} } private int _userIdSaved = 0; public int userIdSaved { get {return this._userIdSaved;} set {this._userIdSaved = value;} } private DateTime _dateSaved = DateTime.MinValue; public DateTime dateSaved { get {return this._dateSaved;} set {this._dateSaved = value;} } private string _primaryIcd = String.Empty; public string primaryIcd { get {return this._primaryIcd;} set {this._primaryIcd = value;} } private string _secondaryIcd = String.Empty; public string secondaryIcd { get {return this._secondaryIcd;} set {this._secondaryIcd = value;} } }