Table of Contents

Interface IDeductionEntry

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

Interface that represents a deduction from payroll.

public interface IDeductionEntry

Properties

DeductionClassification

Gets the type of deduction.

IDeductionDetails DeductionClassification { get; }

Property Value

IDeductionDetails

QuantityInUnits

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

decimal? QuantityInUnits { get; }

Property Value

decimal?

TotalDeduction

Gets the total deduction applied.

decimal TotalDeduction { get; }

Property Value

decimal

ValuePerUnit

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

decimal? ValuePerUnit { get; }

Property Value

decimal?