initial commit

This commit is contained in:
2026-07-21 15:03:40 +07:00
commit 5c20bb8a9e
2752 changed files with 864209 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
using Domain.Common;
namespace Domain.Entities;
public class SalesOrderItem : BaseEntity
{
public string? SalesOrderId { get; set; }
public SalesOrder? SalesOrder { get; set; }
public string? ProductId { get; set; }
public Product? Product { get; set; }
public string? Summary { get; set; }
public double? UnitPrice { get; set; } = 0;
public double? Quantity { get; set; } = 1;
public double? Total { get; set; } = 0;
}