Mercurial > pub > bltoolkit
view Demo/Asp.Net/ObjectModel/OrderLineItem.cs @ 7:99cd4f3947d8
Закомментированы строки мешающие добавлению авиа дежурств.
author | nickolay |
---|---|
date | Fri, 27 Oct 2017 18:26:29 +0300 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
using System; using BLToolkit.Common; using BLToolkit.DataAccess; using BLToolkit.Mapping; namespace PetShop.ObjectModel { [Serializable] [TableName("LineItem")] public class OrderLineItem : EntityBase { [MapField("OrderId"), PrimaryKey(1)] public int OrderID; [MapField("LineNum"), PrimaryKey(2)] public int Line; [MapField("ItemId")] public string ItemID; public int Quantity; [MapField("UnitPrice")] public decimal Price; [MapIgnore] public decimal Subtotal { get { return Quantity * Price; } } } }