using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oReceiptListing { private int _PatientNumber = 0; public int PatientNumber { get {return this._PatientNumber;} set {this._PatientNumber = value;} } private decimal _TotalReceiptedAmount = 0; public decimal TotalReceiptedAmount { get {return this._TotalReceiptedAmount;} set {this._TotalReceiptedAmount = value;} } private decimal _AmountPaidToAssistantFee = 0; public decimal AmountPaidToAssistantFee { get {return this._AmountPaidToAssistantFee;} set {this._AmountPaidToAssistantFee = value;} } private string _PaymentDateTime = String.Empty; public string PaymentDateTime { get {return this._PaymentDateTime;} set {this._PaymentDateTime = value;} } private string _ReceiptNumber = String.Empty; public string ReceiptNumber { get {return this._ReceiptNumber;} set {this._ReceiptNumber = value;} } private string _Patient = String.Empty; public string Patient { get {return this._Patient;} set {this._Patient = value;} } private string _MedicalAid = String.Empty; public string MedicalAid { get {return this._MedicalAid;} set {this._MedicalAid = value;} } private string _PaymentMethod = String.Empty; public string PaymentMethod { get {return this._PaymentMethod;} set {this._PaymentMethod = value;} } private string _PaymentReceiptingAuthorizedBy = String.Empty; public string PaymentReceiptingAuthorizedBy { get {return this._PaymentReceiptingAuthorizedBy;} set {this._PaymentReceiptingAuthorizedBy = value;} } }