using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class ovRemittanceListing { private int _PatientNumber = 0; public int PatientNumber { get {return this._PatientNumber;} set {this._PatientNumber = 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 _Status = String.Empty; public string Status { get {return this._Status;} set {this._Status = value;} } private string _ReceiptNumber = String.Empty; public string ReceiptNumber { get {return this._ReceiptNumber;} set {this._ReceiptNumber = value;} } private string _MedicalAid = String.Empty; public string MedicalAid { get {return this._MedicalAid;} set {this._MedicalAid = value;} } private string _Patient = String.Empty; public string Patient { get {return this._Patient;} set {this._Patient = value;} } private string _patientIdNumber = String.Empty; public string patientIdNumber { get {return this._patientIdNumber;} set {this._patientIdNumber = value;} } }