Table of Contents

Interface IDeductionDetails

Namespace
Payetools.Payroll.Model
Assembly
Payetools.Payroll.dll

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

bool

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

string

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

bool

ReducesNicablePay

Gets a value indicating whether this type of deduction affects pay for National Insurance purposes.

bool ReducesNicablePay { get; }

Property Value

bool

ReducesPensionablePay

Gets a value indicating whether this type of deduction affects pay for pension purposes.

bool ReducesPensionablePay { get; }

Property Value

bool

ReducesTaxablePay

Gets a value indicating whether this type of deduction is applied before or after tax.

bool ReducesTaxablePay { get; }

Property Value

bool

Units

Gets the units for this deduction type, if applicable. Null if not applicable.

PayRateUnits? Units { get; }

Property Value

PayRateUnits?