Interface IPensionContributionCalculator
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
decimalPensionable salary to be used for calculation.
employerContribution
decimalEmployer 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
boolTrue if the
employerContribution
parameter should be treated as a fixed amount; false if it should be treated as a percentage.employeeContribution
decimalEmployee 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
boolTrue 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
IPensionContributionCalculationResultAn 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
decimalPensionable salary to be used for calculation.
employerContribution
decimalEmployer 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
boolTrue if the
employerContribution
parameter should be treated as a fixed amount; false if it should be treated as a percentage.employerNiSavings
decimalSavings in employer's NI due to the salary exchanged.
employerNiSavingsReinvestmentPercentage
decimalPercentage of employer NI savings to be reinvested in the employee's pension, expressed in percentage points (i.e., 100% = 100.0m).
employeeSalaryExchanged
decimalThe 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
boolTrue 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
IPensionContributionCalculationResultAn 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
decimalPensionable salary to be used for calculation.
employeeSalaryExchanged
decimalThe 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
boolTrue 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.