using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oProduct { private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private int _catId = 0; public int catId { get { return this._catId; } set { this._catId = value; } } private string _catDisplay = string.Empty; public string catDisplay { get { return this._catDisplay; } set { this._catDisplay = value; } } private int _typeId = 0; public int typeId { get { return this._typeId; } set { this._typeId = value; } } private string _subCatDisplay = string.Empty; public string subCatDisplay { get { return this._subCatDisplay; } set { this._subCatDisplay = value; } } private int _brandId = 0; public int brandId { get { return this._brandId; } set { this._brandId = value; } } private string _brandDisplay = string.Empty; public string brandDisplay { get { return this._brandDisplay; } set { this._brandDisplay = value; } } private int _sequence = 0; public int sequence { get { return this._sequence; } set { this._sequence = value; } } private string _description = String.Empty; public string description { get { return this._description; } set { this._description = value; } } private string _specifications = String.Empty; public string specifications { get { return this._specifications; } set { this._specifications = value; } } private bool _isActive = false; public bool isActive { get { return this._isActive; } set { this._isActive = value; } } private bool _isFeatured = false; public bool isFeatured { get { return this._isFeatured; } set { this._isFeatured = value; } } private decimal _price = 0; public decimal price { get { return this._price; } set { this._price = value; } } private string _modelNo = String.Empty; public string modelNo { get { return this._modelNo; } set { this._modelNo = value; } } private string _barcode = String.Empty; public string barcode { get { return this._barcode; } set { this._barcode = value; } } private string _display = String.Empty; public string display { get { return this._display; } set { this._display = value; } } private string _name = String.Empty; public string name { get { return this._name; } set { this._name = value; } } private string _fileName = String.Empty; public string fileName { get { return this._fileName; } set { this._fileName = value; } } private string _size = String.Empty; public string size { get { return this._size; } set { this._size = value; } } private decimal _weight = 0.0m; public decimal weight { get { return this._weight; } set { this._weight = value; } } private string _itemCode; public string itemCode { get { return this._itemCode; } set { this._itemCode = value; } } }