25 lines
856 B
C#
25 lines
856 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Dto.Inventory
|
|
{
|
|
public class TransactContextDto
|
|
{
|
|
public int InventoryId { get; set; }
|
|
public string ItemName { get; set; } = string.Empty;
|
|
public long ItemNo { get; set; }
|
|
public long PRNo { get; set; }
|
|
public string? LotNo { get; set; }
|
|
public string? Department { get; set; }
|
|
public decimal QtyOnHand { get; set; }
|
|
public decimal QtyIn { get; set; }
|
|
public decimal QtyOut { get; set; }
|
|
public IEnumerable<ProjectCodeDto> ProjectCodes { get; set; } = [];
|
|
public IEnumerable<DisciplineDto> Disciplines { get; set; } = [];
|
|
public IEnumerable<RISReferenceDto> OpenRISList { get; set; } = [];
|
|
}
|
|
}
|