Multiple settlement options. Upgrade SQL Script included.
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Tanshu.Accounts.Contracts;
|
||||
using Tanshu.Accounts.Contracts.Attributes;
|
||||
using Tanshu.Accounts.Entities.Auth;
|
||||
|
||||
namespace Tanshu.Accounts.Entities
|
||||
{
|
||||
public class VoucherSettlement
|
||||
{
|
||||
public virtual int VoucherSettlementID { get; set; }
|
||||
[NotNull]
|
||||
public virtual Voucher Voucher { get; set; }
|
||||
[NotNull]
|
||||
public virtual SettleOption Settled { get; set; }
|
||||
[NotNull]
|
||||
public virtual decimal Amount { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user