-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCustomerPayment.cs
More file actions
28 lines (26 loc) · 885 Bytes
/
CustomerPayment.cs
File metadata and controls
28 lines (26 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
namespace ObjectSemantics.NET.Tests.MoqModels
{
public class CustomerPayment
{
public int Id { get; set; }
public int CustomerId { get; set; }
public double Amount { get; set; }
public string ReferenceNo { get; set; }
public string PaidBy { get; set; }
public string RegisteredBy { get; set; }
public string Narration { get; set; }
public string CustomerName { get; set; }
public string LedgerAccountName { get; set; }
public int LedgerAccountId { get; set; }
public DateTime PaymentDate { get; set; }
public Customer Customer { get; set; }
}
public class Customer
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string CompanyName { get; set; }
}
}