using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSEraMember { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _eraId = 0; public int eraId { get {return this._eraId;} set {this._eraId = value;} } private DateTime _patientDOB = DateTime.MinValue; public DateTime patientDOB { get {return this._patientDOB;} set {this._patientDOB = value;} } private decimal _totalClaimedAmount = 0; public decimal totalClaimedAmount { get {return this._totalClaimedAmount;} set {this._totalClaimedAmount = value;} } private decimal _totalItemPaidAmount = 0; public decimal totalItemPaidAmount { get {return this._totalItemPaidAmount;} set {this._totalItemPaidAmount = value;} } private decimal _totalPaidToMember = 0; public decimal totalPaidToMember { get {return this._totalPaidToMember;} set {this._totalPaidToMember = value;} } private decimal _totalPatientLiablePortion = 0; public decimal totalPatientLiablePortion { get {return this._totalPatientLiablePortion;} set {this._totalPatientLiablePortion = value;} } private string _memberSurname = String.Empty; public string memberSurname { get {return this._memberSurname;} set {this._memberSurname = value;} } private string _memberFullName = String.Empty; public string memberFullName { get {return this._memberFullName;} set {this._memberFullName = value;} } private string _membershipNo = String.Empty; public string membershipNo { get {return this._membershipNo;} set {this._membershipNo = 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 _patientAccountNo = String.Empty; public string patientAccountNo { get {return this._patientAccountNo;} set {this._patientAccountNo = value;} } }