using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace NX.ERP.Model.MOM { public class MomOrder: BaseModel { private int id; private string code; //public DateTime Date { get; set; } /// /// /// public ICollection ProductDtlLst { get; set; } = new List(); public int ProductOrderId { get => id; set => id = value; } public string ProductOrderNo { get => code; set => code = value; } public DateTime ProductDate { get; set; } public string PreparedBy { get; set; } [Newtonsoft.Json.JsonIgnore] public ICollection Allocates { get; set; } = new List(); } }