Class GenericDeduction
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
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
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
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
ReducesPensionablePay
Gets or sets a value indicating whether this type of deduction affects pay for pension purposes.
public bool ReducesPensionablePay { get; set; }
Property Value
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
ShortName
Gets or sets the short name for this type of deduction.
public string ShortName { get; set; }
Property Value
Units
Gets or sets the units for this deduction type, if applicable. Null if not applicable.
public PayRateUnits? Units { get; set; }