using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class ovPurchasesView { private int _surfaceItemId = 0; public int surfaceItemId { get {return this._surfaceItemId;} set {this._surfaceItemId = value;} } private int _invoiceNo = 0; public int invoiceNo { get {return this._invoiceNo;} set {this._invoiceNo = value;} } private int _receiptNo = 0; public int receiptNo { get {return this._receiptNo;} set {this._receiptNo = value;} } private DateTime _dateOfService = DateTime.MinValue; public DateTime dateOfService { get {return this._dateOfService;} set {this._dateOfService = value;} } private decimal _Received = 0; public decimal Received { get {return this._Received;} set {this._Received = value;} } private decimal _Invoiced = 0; public decimal Invoiced { get {return this._Invoiced;} set {this._Invoiced = value;} } private decimal _Quoted = 0; public decimal Quoted { get {return this._Quoted;} set {this._Quoted = value;} } private decimal _allocated = 0; public decimal allocated { get {return this._allocated;} set {this._allocated = value;} } private decimal _Due = 0; public decimal Due { get {return this._Due;} set {this._Due = value;} } private decimal _RunningBalance = 0; public decimal RunningBalance { get {return this._RunningBalance;} set {this._RunningBalance = value;} } private string _name = String.Empty; public string name { get {return this._name;} set {this._name = value;} } private string _surname = String.Empty; public string surname { get {return this._surname;} set {this._surname = value;} } private string _itemType = String.Empty; public string itemType { get {return this._itemType;} set {this._itemType = value;} } private string _reference = String.Empty; public string reference { get {return this._reference;} set {this._reference = value;} } private string _Number = String.Empty; public string Number { get {return this._Number;} set {this._Number = value;} } private string _Display = String.Empty; public string Display { get {return this._Display;} set {this._Display = value;} } }