20 lines
603 B
C#
20 lines
603 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 RISReferenceDto
|
|
{
|
|
public long RISId { get; set; }
|
|
public string RISNo { get; set; } = string.Empty;
|
|
public decimal QtyIssued { get; set; }
|
|
public decimal TotalReturned { get; set; }
|
|
public decimal QtyAvailableToReturn => QtyIssued - TotalReturned;
|
|
public string DisciplineName { get; set; } = string.Empty;
|
|
public DateTime CreatedDate { get; set; }
|
|
}
|
|
}
|