Class DeductionEntry
Represents a deduction from payroll.
public record DeductionEntry : IDeductionEntry, IEquatable<DeductionEntry>
- Inheritance
-
DeductionEntry
- Implements
- Inherited Members
Properties
DeductionClassification
Gets the type of deduction.
public IDeductionDetails DeductionClassification { get; init; }
Property Value
FixedAmount
Gets the fixed amount of the deduction, 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 deduction that when multiplied by the ValuePerUnit gives the total deduction.
public decimal? QuantityInUnits { get; init; }
Property Value
TotalDeduction
Gets the total deduction to be applied.
public decimal TotalDeduction { get; }
Property Value
ValuePerUnit
Gets the GBP value per unit that when multiplied by the QuantityInUnits gives the total deduction.
public decimal? ValuePerUnit { get; init; }