Interface IDeductionDetails
Interface that represents the various types of deduction that can be made from payroll.
public interface IDeductionDetails
Properties
IsUnderSalaryExchangeArrangement
Gets a value indicating whether this type of deduction is made as part of a salary exchange (aka salary sacrifice) arrangement. Note that when this flag is set, ReducesGrossPay, ReducesTaxablePay and ReducesNicablePay will also normally be set to true.
bool IsUnderSalaryExchangeArrangement { get; }
Property Value
Remarks
This property is primarily included to assist when it is time to show the deduction on the payslip, enabling all salary exchange deductions including pensions to be grouped together.
Name
Gets the full name of this type of deduction.
string Name { get; }
Property Value
ReducesGrossPay
Gets a value indicating whether this type of deduction reduces the gross pay figure used to calculate take-home .
bool ReducesGrossPay { get; }
Property Value
ReducesNicablePay
Gets a value indicating whether this type of deduction affects pay for National Insurance purposes.
bool ReducesNicablePay { get; }
Property Value
ReducesPensionablePay
Gets a value indicating whether this type of deduction affects pay for pension purposes.
bool ReducesPensionablePay { get; }
Property Value
ReducesTaxablePay
Gets a value indicating whether this type of deduction is applied before or after tax.
bool ReducesTaxablePay { get; }
Property Value
Units
Gets the units for this deduction type, if applicable. Null if not applicable.
PayRateUnits? Units { get; }