using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oSalesItem { private string _notes = String.Empty; public string notes { get {return this._notes;} set {this._notes = value;} } private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _itemType = 0; public int itemType { get {return this._itemType;} set {this._itemType = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private bool _isDeleted = false; public bool isDeleted { get {return this._isDeleted;} set {this._isDeleted = value;} } private decimal _SellPriceExcl = 0; public decimal SellPriceExcl { get {return this._SellPriceExcl;} set {this._SellPriceExcl = value;} } private decimal _SellPriceIncl = 0; public decimal SellPriceIncl { get {return this._SellPriceIncl;} set {this._SellPriceIncl = value;} } private decimal _BuyPriceExcl = 0; public decimal BuyPriceExcl { get {return this._BuyPriceExcl;} set {this._BuyPriceExcl = value;} } private string _code = String.Empty; public string code { get {return this._code;} set {this._code = value;} } private string _description = String.Empty; public string description { get {return this._description;} set {this._description = value;} } private string _unitMeasure = String.Empty; public string unitMeasure { get {return this._unitMeasure;} set {this._unitMeasure = value;} } private string _comments = String.Empty; public string comments { get {return this._comments;} set {this._comments = value;} } }