using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oOrder { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _userId = 0; public int userId { get {return this._userId;} set {this._userId = value;} } private DateTime _deliveryDate = DateTime.MinValue; public DateTime deliveryDate { get {return this._deliveryDate;} set {this._deliveryDate = value;} } private DateTime _collectionDate = DateTime.MinValue; public DateTime collectionDate { get {return this._collectionDate;} set {this._collectionDate = value;} } private DateTime _dateSent = DateTime.MinValue; public DateTime dateSent { get {return this._dateSent;} set {this._dateSent = value;} } private bool _orderSent = false; public bool orderSent { get {return this._orderSent;} set {this._orderSent = value;} } private decimal _orderTotal = 0; public decimal orderTotal { get {return this._orderTotal;} set {this._orderTotal = value;} } private string _orderRef = String.Empty; public string orderRef { get {return this._orderRef;} set {this._orderRef = value;} } private int _shippingOption = 0; public int shippingOption { get { return this._shippingOption; } set { this._shippingOption = value; } } private string _deliveryAddress = string.Empty; public string deliveryAddress { get { return this._deliveryAddress; } set { this._deliveryAddress = value; } } private int _paymentOption = 0; public int paymentOption { get { return this._paymentOption; } set { this._paymentOption = value; } } private string _paymentOptionDisplay = string.Empty; public string paymentOptionDisplay { get { return this._paymentOptionDisplay; } set { this._paymentOptionDisplay = value; } } private string _shippingOptionDisplay = string.Empty; public string shippingOptionDisplay { get { return this._shippingOptionDisplay; } set { this._shippingOptionDisplay = value; } } public decimal weightTotal { get; set; } public decimal deliveryFee { get; set; } public decimal finalTotal { get; set; } }