Interface IPensionContributionCalculationResult
Interface for types that model pension contribution calculation results.
public interface IPensionContributionCalculationResult
Properties
BandedEarnings
Gets the portion of earnings used to calculate the employee and employer contributions under Qualifying Earnings. Null for pensionable pay.
decimal? BandedEarnings { get; }
Property Value
CalculatedEmployeeContributionAmount
Gets the employee contribution amount resulting from the calculation. Will be zero if SalaryExchangeApplied is true.
decimal CalculatedEmployeeContributionAmount { get; }
Property Value
CalculatedEmployerContributionAmount
Gets the employer contribution amount resulting from the calculation. IfSalaryExchangeApplied is true, includes both calculated amounts for employer and employee contributions and any NI reinvestment to be applied (based on the value of EmployersNiReinvestmentPercentage).
decimal CalculatedEmployerContributionAmount { get; }
Property Value
EarningsBasis
Gets the earnings basis for the pension calculation (e.g., Qualifying Earnings).
PensionsEarningsBasis EarningsBasis { get; }
Property Value
EmployeeAvcAmount
Gets any Additional Voluntary Contribution (AVC) made by the employee.
decimal? EmployeeAvcAmount { get; }
Property Value
EmployeeContributionFixedAmount
Gets the employee's fixed contribution amount, if applicable. If supplied, overrides EmployeeContributionPercentage.
decimal? EmployeeContributionFixedAmount { get; }
Property Value
EmployeeContributionPercentage
Gets the employee contribution percentage, expressed in percentage points, i.e., 5% = 5.0m.
decimal? EmployeeContributionPercentage { get; }
Property Value
EmployerContributionAmountBeforeSalaryExchange
Gets the portion of the total employer-only contribution made under salary exchange that pertains to the employer's contribution.
decimal? EmployerContributionAmountBeforeSalaryExchange { get; }
Property Value
EmployerContributionPercentage
Gets the employer contribution percentage, expressed in percentage points, i.e., 3% = 3.0m.
decimal EmployerContributionPercentage { get; }
Property Value
EmployerNiSavingsToReinvest
Gets the amount of any employer NI savings that are to be re-invested in the employee's pension, adjusted by the value of EmployersNiReinvestmentPercentage. Only applies under salary exchange.
decimal? EmployerNiSavingsToReinvest { get; }
Property Value
EmployersNiReinvestmentPercentage
Gets the percentage of employer's NI saving to be re-invested into the employee's pension as an employer-only contribution, expressed in percentage points, i.e., 50% = 50.0m. Only applies under salary exchange.
decimal? EmployersNiReinvestmentPercentage { get; }
Property Value
PensionableSalaryInPeriod
Gets the pensionable salary for the period.
decimal PensionableSalaryInPeriod { get; }
Property Value
SalaryExchangeApplied
Gets a value indicating whether salary exchange has been applied.
bool SalaryExchangeApplied { get; }
Property Value
SalaryExchangedAmount
Gets the amount the employee's gross salary exchanged under a salary exchange arrangement.
decimal? SalaryExchangedAmount { get; }
Property Value
TaxTreatment
Gets the pension tax treatment to be applied, i.e., relief at source vs net pay arrangement.
PensionTaxTreatment TaxTreatment { get; }
Property Value
Methods
GetEmployeeContributionsOutsideNpa()
Gets any employee contributions made outside of Net Pay Arrangements.
decimal GetEmployeeContributionsOutsideNpa()
Returns
- decimal
Employee contributions made outside of Net Pay Arrangements.
GetEmployeeContributionsUnderNpa()
Gets any employee contributions made under Net Pay Arrangements.
decimal GetEmployeeContributionsUnderNpa()
Returns
- decimal
Employee contributions made under Net Pay Arrangements.