using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oOrderItems { 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 decimal _unitPrice = 0; public decimal unitPrice { get {return this._unitPrice;} set {this._unitPrice = value;} } public decimal unitWeight { get; set; } public decimal totalPrice { get; set; } public decimal totalWeight { get; set; } }