Table of Contents

Class DeductionEntry

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

Represents a deduction from payroll.

public record DeductionEntry : IDeductionEntry, IEquatable<DeductionEntry>
Inheritance
DeductionEntry
Implements
Inherited Members

Properties

DeductionClassification

Gets the type of deduction.

public IDeductionDetails DeductionClassification { get; init; }

Property Value

IDeductionDetails

FixedAmount

Gets the fixed amount of the deduction, if that is specified in place of quantity and value per unit. Used for absolute amounts.

public decimal? FixedAmount { get; init; }

Property Value

decimal?

QuantityInUnits

Gets the quantity of this deduction that when multiplied by the ValuePerUnit gives the total deduction.

public decimal? QuantityInUnits { get; init; }

Property Value

decimal?

TotalDeduction

Gets the total deduction to be applied.

public decimal TotalDeduction { get; }

Property Value

decimal

ValuePerUnit

Gets the GBP value per unit that when multiplied by the QuantityInUnits gives the total deduction.

public decimal? ValuePerUnit { get; init; }

Property Value

decimal?