using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AyaNovaQBI { 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 }