Interface IPayrollAmount
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
QuantityInUnits
Gets the quantity of this deduction that when multiplied by the ValuePerUnit gives the total amount.
decimal? QuantityInUnits { get; init; }
Property Value
TotalDeduction
Gets the total amount to be applied (default implementation).
decimal TotalDeduction { get; }
Property Value
ValuePerUnit
Gets the GBP value per unit that when multiplied by the QuantityInUnits gives the total deduction.
decimal? ValuePerUnit { get; init; }