Class EarningsEntry
Represents an element of an employee's pay.
public class EarningsEntry : IEarningsEntry
- Inheritance
-
EarningsEntry
- Implements
- Inherited Members
Properties
EarningsDetails
Gets the type of deduction.
public IEarningsDetails EarningsDetails { get; init; }
Property Value
FixedAmount
Gets the fixed amount of the earnings, if that is specified in place of quantity and value per unit. Used for absolute amounts.
public decimal? FixedAmount { get; init; }
Property Value
QuantityInUnits
Gets the quantity of this earnings entry that when multiplied by the ValuePerUnit gives the total earnings.
public decimal? QuantityInUnits { get; init; }
Property Value
TotalEarnings
Gets the total earnings to be applied.
public decimal TotalEarnings { get; }
Property Value
ValuePerUnit
Gets the GBP value per unit that when multiplied by the QuantityInUnits gives the total earnings.
public decimal? ValuePerUnit { get; init; }