Table of Contents

Interface IPayrollAmount

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

Interface that types should implement to communicate an amount that is either fixed or calculated as a product of quantity in units and per unit rate.

public interface IPayrollAmount

Properties

FixedAmount

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

decimal? FixedAmount { get; init; }

Property Value

decimal?

QuantityInUnits

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

decimal? QuantityInUnits { get; init; }

Property Value

decimal?

TotalDeduction

Gets the total amount to be applied (default implementation).

decimal TotalDeduction { get; }

Property Value

decimal

ValuePerUnit

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

decimal? ValuePerUnit { get; init; }

Property Value

decimal?