using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oInvoiceListing { private int _PatientNumber = 0; public int PatientNumber { get {return this._PatientNumber;} set {this._PatientNumber = value;} } private decimal _NettAmount = 0; public decimal NettAmount { get {return this._NettAmount;} set {this._NettAmount = value;} } private decimal _AssistantFee = 0; public decimal AssistantFee { get {return this._AssistantFee;} set {this._AssistantFee = value;} } private decimal _VatAmount = 0; public decimal VatAmount { get {return this._VatAmount;} set {this._VatAmount = value;} } private decimal _TotalBilling = 0; public decimal TotalBilling { get {return this._TotalBilling;} set {this._TotalBilling = value;} } private string _InvoicedDateTime = String.Empty; public string InvoicedDateTime { get {return this._InvoicedDateTime;} set {this._InvoicedDateTime = value;} } private string _InvoiceNumber = String.Empty; public string InvoiceNumber { get {return this._InvoiceNumber;} set {this._InvoiceNumber = 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 _InvoiceAuthorizedBy = String.Empty; public string InvoiceAuthorizedBy { get {return this._InvoiceAuthorizedBy;} set {this._InvoiceAuthorizedBy = value;} } }