23 lines
476 B
C#
Raw Normal View History

namespace Microsoft.eShopOnContainers.Services.Ordering.Domain
{
using Microsoft.eShopOnContainers.Services.Ordering.Domain.SeedWork;
public class OrderItem
:Entity
{
2016-12-14 18:23:57 +01:00
public int ProductId { get; set; }
2016-12-14 18:23:57 +01:00
public string ProductName { get; set; }
2016-12-14 18:23:57 +01:00
public int OrderId { get; set; }
2016-12-14 18:23:57 +01:00
public decimal UnitPrice { get; set; }
2016-12-14 18:23:57 +01:00
public decimal Discount { get; set; }
2016-12-14 18:23:57 +01:00
public int Units { get; set; }
}
}