This commit is contained in:
2022-07-05 14:01:43 +00:00
parent 2de02d6f34
commit 9a27e4773c
5 changed files with 70 additions and 23 deletions

View File

@@ -6,7 +6,14 @@ using System.Threading.Tasks;
namespace AyaNovaQBI
{
internal class PartStockLevel
public class PartStockLevel
{
}
public long Id { get; set; }
public uint Concurrency { get; set; }
public long PartWarehouseId { get; set; }
public long PartId { get; set; }
public decimal MinimumQuantity { get; set; }
public string PartWarehouseDisplay { get; set; }//to display name in UI, not relevant to db or biz object
}//eoc
}