Class QualifyingEarningsContributionsCalculator
Represents a pension contribution calculator for Qualifying Earnings.
public class QualifyingEarningsContributionsCalculator : PensionContributionCalculator, IPensionContributionCalculator
- Inheritance
-
QualifyingEarningsContributionsCalculator
- Implements
- Inherited Members
Constructors
QualifyingEarningsContributionsCalculator(PensionTaxTreatment, decimal, decimal, decimal?)
Initialises a new instance of QualifyingEarningsContributionsCalculator with the specified tax treatment, using the lower and upper thresholds supplied.
public QualifyingEarningsContributionsCalculator(PensionTaxTreatment taxTreatment, decimal lowerLevelForQualifyingEarnings, decimal upperLevelForQualifyingEarnings, decimal? basicRateOfTax = null)
Parameters
taxTreatment
PensionTaxTreatmentTax treatment for the target pension, i.e., net pay arrangement vs relief at source.
lowerLevelForQualifyingEarnings
decimalHMRC/TPR-supplied lower level for qualifying earnings.
upperLevelForQualifyingEarnings
decimalHMRC/TPR-supplied upper level for qualifying earnings.
basicRateOfTax
decimal?Basic rate of tax to use for relief at source pensions.
Properties
EarningsBasis
Gets the earnings basis for this calculator. Always returns QualifyingEarnings.
public override PensionsEarningsBasis EarningsBasis { get; }
Property Value
Methods
CalculateContributions(decimal, decimal, decimal, bool, decimal?)
Abstract method signature for calculating pension contributions based on the supplied inputs.
protected override (decimal earningsForPensionCalculation, decimal employerContribution, decimal employeeContribution) CalculateContributions(decimal pensionableSalary, decimal employerContributionPercentage, decimal employeeContribution, bool employeeContributionIsFixedAmount = false, decimal? salaryForMaternityPurposes = null)
Parameters
pensionableSalary
decimalPensionable salary to be used for calculation.
employerContributionPercentage
decimalEmployer contribution level, expressed in percentage points (i.e., 3% = 3.0m).
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 previous parameter should be treated as a fixed amount; false if it should be treated as a percentage.
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.
Returns
- (decimal earningsForPensionCalculation, decimal employerContribution, decimal employeeContribution)
A tuple containing the earnings used for the calculation (employee only if maternity override applies), and the employer and employee contribution levels.
GetEarningsForPensionCalculation(decimal)
Gets the earnings to be used for the pensionable salary calculation. For Pensionable Pay Set X, this is the same as the earnings; for QualifyingEarnings, this is the banded amount.
protected override decimal GetEarningsForPensionCalculation(decimal pensionableSalary)
Parameters
pensionableSalary
decimalOriginal pensionable salary.
Returns
- decimal
Earnings to be used for the pensionable salary calculation.