19 lines
499 B
C#
19 lines
499 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Tanshu.Accounts.Contracts
|
|
{
|
|
public class VerificationBO
|
|
{
|
|
public Guid VerificationID { get; set; }
|
|
public Guid VoucherID { get; set; }
|
|
public Guid ProductID { get; set; }
|
|
public decimal ActualQuantity { get; set; }
|
|
public decimal ComputedQuantity { get; set; }
|
|
public decimal LostQuantity
|
|
{
|
|
get { return ComputedQuantity - ActualQuantity; }
|
|
}
|
|
}
|
|
}
|