25 lines
792 B
C#
25 lines
792 B
C#
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 Inventory? Inventory { get; set; }
|
|
// public InventTransDetail? InventTransDetail { get; set; }
|
|
public ICollection<InventTransDetail> InventTransDetails { get; set; } = [];
|
|
}
|
|
}
|