//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:2.0.50727.3053 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace ActiveRecordScaffolding.Data { [Castle.ActiveRecord.ActiveRecordAttribute("[Order Details]")] public partial class OrderDetails { private int _iD; private decimal _unitPrice; private int _quantity; private decimal _discount; [Castle.ActiveRecord.PrimaryKeyAttribute(Castle.ActiveRecord.PrimaryKeyType.Identity, "[ID]")] public virtual int Id { get { return this._iD; } set { this._iD = value; } } [Castle.ActiveRecord.PropertyAttribute("[Unit Price]")] public virtual decimal UnitPrice { get { return this._unitPrice; } set { this._unitPrice = value; } } [Castle.ActiveRecord.PropertyAttribute("[Quantity]")] public virtual int Quantity { get { return this._quantity; } set { this._quantity = value; } } [Castle.ActiveRecord.PropertyAttribute("[Discount]")] public virtual decimal Discount { get { return this._discount; } set { this._discount = value; } } } }