using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; [Serializable] public class oProductOrder { private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private int _orderId = 0; public int orderId { get { return this._orderId; } set { this._orderId = value; } } private int _productId = 0; public int productId { get { return this._productId; } set { this._productId = value; } } private int _qty = 0; public int qty { get { return this._qty; } set { this._qty = value; } } private int _catalogueId = 0; public int catalogueId { get { return this._catalogueId; } set { this._catalogueId = value; } } private decimal _unitPrice = 0; public decimal unitPrice { get { return this._unitPrice; } set { this._unitPrice = value; } } private string _priceDisplay = String.Empty; public string priceDisplay { get { return this._priceDisplay; } set { this._priceDisplay = value; } } private string _totalDisplay = String.Empty; public string totalDisplay { get { return this._totalDisplay; } set { this._totalDisplay = 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 _category = String.Empty; public string category { get { return this._category; } set { this._category = value; } } private string _caption = String.Empty; public string caption { get { return this._caption; } set { this._caption = value; } } private string _brand = String.Empty; public string brand { get { return this._brand; } set { this._brand = value; } } public decimal totalWeight { get; set; } }