initial commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using Indotalent.Data.Abstracts;
|
||||
using Indotalent.Data.Interfaces;
|
||||
|
||||
namespace Indotalent.Data.Entities;
|
||||
|
||||
public class PurchaseRequisitionItem : BaseEntity
|
||||
{
|
||||
public string? PurchaseRequisitionId { get; set; }
|
||||
public PurchaseRequisition? PurchaseRequisition { 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;
|
||||
}
|
||||
Reference in New Issue
Block a user