using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSMsvPatient { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _msvId = 0; public int msvId { get {return this._msvId;} set {this._msvId = value;} } private DateTime _patientDOB = DateTime.MinValue; public DateTime patientDOB { get {return this._patientDOB;} set {this._patientDOB = value;} } private string _dependantCode = String.Empty; public string dependantCode { get {return this._dependantCode;} set {this._dependantCode = value;} } private string _patientSurname = String.Empty; public string patientSurname { get {return this._patientSurname;} set {this._patientSurname = value;} } private string _patientInitials = String.Empty; public string patientInitials { get {return this._patientInitials;} set {this._patientInitials = value;} } private string _patientFullName = String.Empty; public string patientFullName { get {return this._patientFullName;} set {this._patientFullName = value;} } private string _patientGender = String.Empty; public string patientGender { get {return this._patientGender;} set {this._patientGender = value;} } private string _patientRelationCode = String.Empty; public string patientRelationCode { get {return this._patientRelationCode;} set {this._patientRelationCode = value;} } private string _patientIdNumber = String.Empty; public string patientIdNumber { get {return this._patientIdNumber;} set {this._patientIdNumber = value;} } }