Spaces:
Sleeping
Sleeping
File size: 369 Bytes
13240d3 | 1 2 3 4 5 6 7 8 9 10 11 12 | namespace BakeryErp.Domain.Entities;
public sealed class PurchaseOrderLine : BaseEntity
{
public Guid PurchaseOrderId { get; set; }
public Guid ItemId { get; set; }
public decimal Quantity { get; set; }
public string Unit { get; set; } = string.Empty;
public decimal UnitPrice { get; set; }
public decimal LineAmount => Quantity * UnitPrice;
}
|