using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class ovAccountUnprocessedEra { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private DateTime _Date = DateTime.MinValue; public DateTime Date { get {return this._Date;} set {this._Date = value;} } private DateTime _patientDOB = DateTime.MinValue; public DateTime patientDOB { get {return this._patientDOB;} set {this._patientDOB = value;} } private decimal _ClaimAmount = 0; public decimal ClaimAmount { get {return this._ClaimAmount;} set {this._ClaimAmount = value;} } private decimal _PaidAmount = 0; public decimal PaidAmount { get {return this._PaidAmount;} set {this._PaidAmount = value;} } private string _EraStatus = String.Empty; public string EraStatus { get {return this._EraStatus;} set {this._EraStatus = value;} } private string _PatientName = String.Empty; public string PatientName { get {return this._PatientName;} set {this._PatientName = value;} } private string _patientSurname = String.Empty; public string patientSurname { get {return this._patientSurname;} set {this._patientSurname = value;} } private string _patientIdNumber = String.Empty; public string patientIdNumber { get {return this._patientIdNumber;} set {this._patientIdNumber = value;} } private string _medicalSchemeName = String.Empty; public string medicalSchemeName { get {return this._medicalSchemeName;} set {this._medicalSchemeName = value;} } }