using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMedicalTraumaticEvent { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _patientType = 0; public int patientType { get {return this._patientType;} set {this._patientType = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private string _traumaticEvent = String.Empty; public string traumaticEvent { get {return this._traumaticEvent;} set {this._traumaticEvent = value;} } }