using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class ovCreditListing { 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 _TotalCreditNoteAmount = 0; public decimal TotalCreditNoteAmount { get {return this._TotalCreditNoteAmount;} set {this._TotalCreditNoteAmount = value;} } private string _CreditNoteDateTime = String.Empty; public string CreditNoteDateTime { get {return this._CreditNoteDateTime;} set {this._CreditNoteDateTime = value;} } private string _CreditNoteNumber = String.Empty; public string CreditNoteNumber { get {return this._CreditNoteNumber;} set {this._CreditNoteNumber = 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 _CreditNoteAuthorizedBy = String.Empty; public string CreditNoteAuthorizedBy { get {return this._CreditNoteAuthorizedBy;} set {this._CreditNoteAuthorizedBy = value;} } }