initial commit

This commit is contained in:
2026-07-21 14:14:44 +07:00
commit fa7dbb970d
1359 changed files with 104110 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
using Indotalent.Data.Abstracts;
using Indotalent.Data.Interfaces;
namespace Indotalent.Data.Entities;
public class SalesOrderItem : BaseEntity, IMultiTenant
{
public string? TenantId { get; set; }
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 decimal? UnitPrice { get; set; } = 0;
public double? Quantity { get; set; } = 1;
public decimal? Total { get; set; } = 0;
}