using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oDebitListing { 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 _VatAmount = 0; public decimal VatAmount { get {return this._VatAmount;} set {this._VatAmount = value;} } private decimal _TotalDebitNoteAmount = 0; public decimal TotalDebitNoteAmount { get {return this._TotalDebitNoteAmount;} set {this._TotalDebitNoteAmount = value;} } private string _DebitNoteDateTime = String.Empty; public string DebitNoteDateTime { get {return this._DebitNoteDateTime;} set {this._DebitNoteDateTime = value;} } private string _DebitNoteNumber = String.Empty; public string DebitNoteNumber { get {return this._DebitNoteNumber;} set {this._DebitNoteNumber = 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 _DebitNoteAuthorizedBy = String.Empty; public string DebitNoteAuthorizedBy { get {return this._DebitNoteAuthorizedBy;} set {this._DebitNoteAuthorizedBy = value;} } }