Table of Contents

Interface IPensionContributionCalculator

Namespace
Payetools.Pensions
Assembly
Payetools.Pensions.dll

Interface for types that provide calculation of pension contributions, both under normal arrangements and under salary exchange (aka salary sacrifice).

public interface IPensionContributionCalculator

Methods

Calculate(decimal, decimal, bool, decimal, bool, decimal?, decimal?, out IPensionContributionCalculationResult)

Calculates the appropriate employee and employer pension contributions based on the supplied employer and employee rates. Also supports the ability to supply a fixed employee contribution as an alternative to an employee percentage rate.

void Calculate(decimal pensionableSalary, decimal employerContribution, bool employerContributionIsFixedAmount, decimal employeeContribution, bool employeeContributionIsFixedAmount, decimal? avcForPeriod, decimal? salaryForMaternityPurposes, out IPensionContributionCalculationResult result)

Parameters

pensionableSalary decimal

Pensionable salary to be used for calculation.

employerContribution decimal

Employer contribution level, either expressed in percentage points (i.e., 5% = 5.0m) or as a fixed amount (i.e. £500.00), as indicated by employerContributionIsFixedAmount.

employerContributionIsFixedAmount bool

True if the employerContribution parameter should be treated as a fixed amount; false if it should be treated as a percentage.

employeeContribution decimal

Employee contribution level, either expressed in percentage points (i.e., 5% = 5.0m) or as a fixed amount (i.e. £500.00), as indicated by the following parameter.

employeeContributionIsFixedAmount bool

True if the employeeContribution parameter should be treated as a fixed amount; false if it should be treated as a percentage.

avcForPeriod decimal?

Any Additional Voluntary Contribution (AVC) on the part of the employee.

salaryForMaternityPurposes decimal?

Used to override the employer contribution when an individual is on maternity leave and should be paid employer contributions based on their contracted salary rather than their pensionable pay.

result IPensionContributionCalculationResult

An instance of a IPensionContributionCalculationResult implementation that contains the results of the calculation.

CalculateUnderSalaryExchange(decimal, decimal, bool, decimal, decimal, decimal, bool, decimal?, decimal?, out IPensionContributionCalculationResult)

Calculates the appropriate employee and employer pension contributions based on the supplied employer and employee rates, but under salary exchange arrangements. Here the output employee contribution will always be zero. Also supports the ability to supply a fixed employee contribution as an alternative to an employee percentage rate.

void CalculateUnderSalaryExchange(decimal pensionableSalary, decimal employerContribution, bool employerContributionIsFixedAmount, decimal employerNiSavings, decimal employerNiSavingsReinvestmentPercentage, decimal employeeSalaryExchanged, bool employeeSalaryExchangedIsFixedAmount, decimal? avcForPeriod, decimal? salaryForMaternityPurposes, out IPensionContributionCalculationResult result)

Parameters

pensionableSalary decimal

Pensionable salary to be used for calculation.

employerContribution decimal

Employer contribution level, either expressed in percentage points (i.e., 5% = 5.0m) or as a fixed amount (i.e. £500.00), as indicated by employerContributionIsFixedAmount.

employerContributionIsFixedAmount bool

True if the employerContribution parameter should be treated as a fixed amount; false if it should be treated as a percentage.

employerNiSavings decimal

Savings in employer's NI due to the salary exchanged.

employerNiSavingsReinvestmentPercentage decimal

Percentage of employer NI savings to be reinvested in the employee's pension, expressed in percentage points (i.e., 100% = 100.0m).

employeeSalaryExchanged decimal

The level of employee's salary forgone as set out in the salary exchange arrangements. Expressed either as a percentage in percentage points (e.g., 5% = 5.0m), or as a fixed amount, as indicated by the following parameter. NB If fixed amount is given, it relates to the pay period (as opposed to annually).

employeeSalaryExchangedIsFixedAmount bool

True if the employeeContribution parameter should be treated as a fixed amount; false if it should be treated as a percentage.

avcForPeriod decimal?

Any Additional Voluntary Contribution (AVC) on the part of the employee.

salaryForMaternityPurposes decimal?

Used to override the employer contribution when an individual is on maternity leave and should be paid employer contributions based on their contracted salary rather than their pensionable pay.

result IPensionContributionCalculationResult

An instance of a IPensionContributionCalculationResult implementation that contains the results of the calculation.

GetSalaryExchangedAmount(decimal, decimal, bool)

Gets the absolute amount of employee salary exchanged, either as a result of a fixed amount being passed in, or as a percentage of pensionable salary (banded in the case of Qualifying Earnings.

decimal GetSalaryExchangedAmount(decimal pensionableSalary, decimal employeeSalaryExchanged, bool employeeSalaryExchangedIsFixedAmount)

Parameters

pensionableSalary decimal

Pensionable salary to be used for calculation.

employeeSalaryExchanged decimal

The level of employee's salary forgone as set out in the salary exchange arrangements. Expressed either as a percentage in percentage points (e.g., 5% = 5.0m), or as a fixed amount, as indicated by the following parameter. NB If fixed amount is given, it relates to the pay period (as opposed to annually).

employeeSalaryExchangedIsFixedAmount bool

True if the previous parameter should be treated as a fixed amount; false if it should be treated as a percentage.

Returns

decimal

Value of employee salary being exchanged.