using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSMsvResponsePatient { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _msvResponseId = 0; public int msvResponseId { get {return this._msvResponseId;} set {this._msvResponseId = value;} } private DateTime _patientDOB = DateTime.MinValue; public DateTime patientDOB { get {return this._patientDOB;} set {this._patientDOB = value;} } private DateTime _medSchemeEffectiveDate = DateTime.MinValue; public DateTime medSchemeEffectiveDate { get {return this._medSchemeEffectiveDate;} set {this._medSchemeEffectiveDate = value;} } private DateTime _medSchemeTerminationDate = DateTime.MinValue; public DateTime medSchemeTerminationDate { get {return this._medSchemeTerminationDate;} set {this._medSchemeTerminationDate = 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 _patientIdNumber = String.Empty; public string patientIdNumber { get {return this._patientIdNumber;} set {this._patientIdNumber = value;} } private string _patientGender = String.Empty; public string patientGender { get {return this._patientGender;} set {this._patientGender = value;} } private string _medSchemeStatus = String.Empty; public string medSchemeStatus { get {return this._medSchemeStatus;} set {this._medSchemeStatus = value;} } }