using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oSales { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } 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 int _userId = 0; public int userId { get {return this._userId;} set {this._userId = value;} } private int _sequence = 0; public int sequence { get {return this._sequence;} set {this._sequence = value;} } private int _statusId = 0; public int statusId { get {return this._statusId;} set {this._statusId = value;} } private int _updateUserId = 0; public int updateUserId { get {return this._updateUserId;} set {this._updateUserId = value;} } private DateTime _dateOfService = DateTime.MinValue; public DateTime dateOfService { get {return this._dateOfService;} set {this._dateOfService = value;} } private DateTime _dateOfCapture = DateTime.MinValue; public DateTime dateOfCapture { get {return this._dateOfCapture;} set {this._dateOfCapture = value;} } private DateTime _dateDue = DateTime.MinValue; public DateTime dateDue { get {return this._dateDue;} set {this._dateDue = value;} } private DateTime _updateDate = DateTime.MinValue; public DateTime updateDate { get {return this._updateDate;} set {this._updateDate = value;} } private bool _isVisible = false; public bool isVisible { get {return this._isVisible;} set {this._isVisible = value;} } private bool _isDraft = false; public bool isDraft { get {return this._isDraft;} set {this._isDraft = value;} } private bool _emailSent = false; public bool emailSent { get {return this._emailSent;} set {this._emailSent = value;} } private decimal _qty = 0; public decimal qty { get {return this._qty;} set {this._qty = value;} } private decimal _unitFee = 0; public decimal unitFee { get {return this._unitFee;} set {this._unitFee = value;} } private decimal _amount = 0; public decimal amount { get {return this._amount;} set {this._amount = value;} } private decimal _allocated = 0; public decimal allocated { get {return this._allocated;} set {this._allocated = value;} } private decimal _runningBal = 0; public decimal runningBal { get {return this._runningBal;} set {this._runningBal = value;} } private decimal _vatRate = 0; public decimal vatRate { get {return this._vatRate;} set {this._vatRate = 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 _title = String.Empty; public string title { get {return this._title;} set {this._title = value;} } private string _initials = String.Empty; public string initials { get {return this._initials;} set {this._initials = value;} } private string _itemCode = String.Empty; public string itemCode { get {return this._itemCode;} set {this._itemCode = value;} } private string _itemDescription = String.Empty; public string itemDescription { get {return this._itemDescription;} set {this._itemDescription = value;} } private string _vatNum = String.Empty; public string vatNum { get {return this._vatNum;} set {this._vatNum = value;} } private string _accountNo = String.Empty; public string accountNo { get {return this._accountNo;} set {this._accountNo = value;} } private string _emailCC = String.Empty; public string emailCC { get {return this._emailCC;} set {this._emailCC = 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 _comments = String.Empty; public string comments { get {return this._comments;} set {this._comments = value;} } private string _allocatedReference = String.Empty; public string allocatedReference { get {return this._allocatedReference;} set {this._allocatedReference = value;} } private string _postalAddress = String.Empty; public string postalAddress { get {return this._postalAddress;} set {this._postalAddress = value;} } private string _email = String.Empty; public string email { get {return this._email;} set {this._email = value;} } }