Interface IDeductionEntry
Interface that represents a deduction from payroll.
public interface IDeductionEntry
Properties
DeductionClassification
Gets the type of deduction.
IDeductionDetails DeductionClassification { get; }
Property Value
QuantityInUnits
Gets the quantity of this deduction that when multiplied by the ValuePerUnit gives the total deduction. Optional.
decimal? QuantityInUnits { get; }
Property Value
TotalDeduction
Gets the total deduction applied.
decimal TotalDeduction { get; }
Property Value
ValuePerUnit
Gets the GBP value per unit that when multiplied by the QuantityInUnits gives the total deduction. Optional.
decimal? ValuePerUnit { get; }