using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Entities.PO { public class PurchaseOrder { [Key] public long ItemNo { get; set; } public string? PONo { get; set; } public string? ItemSpecs { get; set; } public string? ItemName { get; set; } public decimal Price { get; set;} public string? EmailAddress { get; set; } public string? SupplierName { get; set; } public string? Manufacturer { get; set; } public int Qty { get; set; } public long CanvassDetailId { get; set; } public long CanvassId { get; set; } public long PODetailId { get; set; } public DateTime DateNeeded { get; set; } } }