summaryrefslogtreecommitdiff
path: root/product/Domain/Accounting/Payment.cs
diff options
context:
space:
mode:
Diffstat (limited to 'product/Domain/Accounting/Payment.cs')
-rw-r--r--product/Domain/Accounting/Payment.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/product/Domain/Accounting/Payment.cs b/product/Domain/Accounting/Payment.cs
index 1c86368..00a10cd 100644
--- a/product/Domain/Accounting/Payment.cs
+++ b/product/Domain/Accounting/Payment.cs
@@ -3,13 +3,13 @@ using MoMoney.Domain.Core;
namespace MoMoney.Domain.Accounting
{
- public interface IPayment : IEntity
+ public interface IPayment : Entity
{
Money apply_to(Money money);
}
[Serializable]
- internal class Payment : Entity<IPayment>, IPayment
+ internal class Payment : GenericEntity<IPayment>, IPayment
{
Money amount_paid { get; set; }