Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 |
|
---|
4 | namespace ocrent;
|
---|
5 |
|
---|
6 | public partial class Payment
|
---|
7 | {
|
---|
8 | public int PaymentId { get; set; }
|
---|
9 |
|
---|
10 | public DateOnly PaymentDate { get; set; }
|
---|
11 |
|
---|
12 | public TimeOnly PaymentTime { get; set; }
|
---|
13 |
|
---|
14 | public decimal Amount { get; set; }
|
---|
15 |
|
---|
16 | public int CardId { get; set; }
|
---|
17 |
|
---|
18 | public virtual PaymentCard Card { get; set; } = null!;
|
---|
19 |
|
---|
20 | public virtual ICollection<Contract> Contracts { get; } = new List<Contract>();
|
---|
21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.