Table of Contents

Class GenericDeduction

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

Represents the various types of deduction that can be made from payroll.

public record GenericDeduction : IDeductionDetails, IEquatable<GenericDeduction>
Inheritance
GenericDeduction
Implements
Inherited Members

Properties

IsUnderSalaryExchangeArrangement

Gets or sets 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.

public bool IsUnderSalaryExchangeArrangement { get; set; }

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 or sets the full name of this type of deduction.

public string Name { get; set; }

Property Value

string

ReducesGrossPay

Gets a value indicating whether this type of deduction reduces the gross pay figure used to calculate take-home .

public bool ReducesGrossPay { get; }

Property Value

bool

ReducesNicablePay

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

public bool ReducesNicablePay { get; set; }

Property Value

bool

ReducesPensionablePay

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

public bool ReducesPensionablePay { get; set; }

Property Value

bool

ReducesTaxablePay

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

public bool ReducesTaxablePay { get; set; }

Property Value

bool

ShortName

Gets or sets the short name for this type of deduction.

public string ShortName { get; set; }

Property Value

string

Units

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

public PayRateUnits? Units { get; set; }

Property Value

PayRateUnits?