Class PensionablePaySetCalculator
Represents a pension contribution calculator for Pensionable Pay Set 1, 2 and 3.
public class PensionablePaySetCalculator : PensionContributionCalculator, IPensionContributionCalculator
- Inheritance
-
PensionablePaySetCalculator
- Implements
- Inherited Members
Constructors
PensionablePaySetCalculator(PensionsEarningsBasis, PensionTaxTreatment, decimal?)
Initialises a new instance of PensionablePaySetCalculator for the specified earnings basic and tax treatment.
public PensionablePaySetCalculator(PensionsEarningsBasis earningsBasis, PensionTaxTreatment taxTreatment, decimal? basicRateOfTax = null)
Parameters
earningsBasis
PensionsEarningsBasisSepcifies the earnings basis for this calculator. Must be one of Pensionable Pay Set 1, Pensionable Pay Set 2 or Pensionable Pay Set 3.
taxTreatment
PensionTaxTreatmentTax treatment for the target pension, i.e., net pay arrangement vs relief at source.
basicRateOfTax
decimal?Basic rate of tax to use for relief at source pensions.
Exceptions
- ArgumentException
Thrown if an invalid earnings basis is supplied.
Properties
EarningsBasis
Gets the earnings basis of this pension contribution calculator i.e., Qualifying Earnings vs Pensionable Pay Set X.
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.