15 lines
455 B
C#
15 lines
455 B
C#
using LiteCharms.Features.MidrandBooks.Customers.Entities;
|
|
using LiteCharms.Features.MidrandBooks.Orders.Entities;
|
|
|
|
namespace LiteCharms.Features.MidrandBooks.Payments.Entities;
|
|
|
|
[EntityTypeConfiguration<PaymentLedgerConfiguration, PaymentLedger>]
|
|
public class PaymentLedger : Models.PaymentLedger
|
|
{
|
|
public virtual Payment? Payment { get; set; }
|
|
|
|
public virtual Order? Order { get; set; }
|
|
|
|
public virtual Customer? Customer { get; set; }
|
|
}
|