using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Entities.Inventory { [Table("InventTrans")] public class InventTrans { [Key] public int InventTransId { get; set; } public int InventoryId { get; set; } public long RRNo { get; set; } public string CreatedBy { get; set; }=string.Empty; public bool IsActive { get; set; } public ICollection InventTransDetails { get; set; } = []; } }