using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oAccountRecon { private int _FiscalPeriod = 0; public int FiscalPeriod { get {return this._FiscalPeriod;} set {this._FiscalPeriod = value;} } private decimal _OpeningBalance = 0; public decimal OpeningBalance { get {return this._OpeningBalance;} set {this._OpeningBalance = value;} } private decimal _Invoices = 0; public decimal Invoices { get {return this._Invoices;} set {this._Invoices = value;} } private decimal _Receipts = 0; public decimal Receipts { get {return this._Receipts;} set {this._Receipts = value;} } private decimal _CreditNotes = 0; public decimal CreditNotes { get {return this._CreditNotes;} set {this._CreditNotes = value;} } private decimal _DebitNotes = 0; public decimal DebitNotes { get {return this._DebitNotes;} set {this._DebitNotes = value;} } private decimal _ClosingBalance = 0; public decimal ClosingBalance { get {return this._ClosingBalance;} set {this._ClosingBalance = value;} } }