-
Notifications
You must be signed in to change notification settings - Fork 0
/
Paycheck.cs
61 lines (51 loc) · 1.65 KB
/
Paycheck.cs
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using WorkflowLib.Shared.Models.Business;
using WorkflowLib.Shared.Models.Business.InformationSystem;
namespace WorkflowLib.Shared.Models.Business.Monetary
{
/// <summary>
/// Paycheck.
/// </summary>
public class Paycheck : BusinessEntityWF, IBusinessEntityWF, ITemporalBusinessEntityWF
{
/// <summary>
/// Date.
/// </summary>
public System.DateTime Date { get; private set; }
/// <summary>
/// Working hours.
/// </summary>
public WorkingHours WorkingHours { get; private set; }
/// <summary>
/// Days off.
/// </summary>
public DaysOff? DaysOff { get; private set; }
/// <summary>
/// Sub total payments.
/// </summary>
public SubTotalPayments SubTotalPayments { get; private set; }
/// <summary>
/// Total amount.
/// </summary>
public decimal Total { get; private set; }
/// <summary>
/// Employee.
/// </summary>
public virtual Employee Employee { get; private set; }
/// <summary>
/// Actual start date.
/// </summary>
public System.DateTime? DateStartActual { get; set; }
/// <summary>
/// Actual end date.
/// </summary>
public System.DateTime? DateEndActual { get; set; }
/// <summary>
/// Expected start date.
/// </summary>
public System.DateTime? DateStartExpected { get; set; }
/// <summary>
/// Expected end date.
/// </summary>
public System.DateTime? DateEndExpected { get; set; }
}
}