using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oPurchasesItem { 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 _PurchasePriceExcl = 0; public decimal PurchasePriceExcl { get {return this._PurchasePriceExcl;} set {this._PurchasePriceExcl = value;} } private decimal _PurchasePriceIncl = 0; public decimal PurchasePriceIncl { get {return this._PurchasePriceIncl;} set {this._PurchasePriceIncl = 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;} } }