Table of Contents

Interface IPensionContributionCalculationResult

Namespace
Payetools.Pensions.Model
Assembly
Payetools.Pensions.dll

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

decimal?

CalculatedEmployeeContributionAmount

Gets the employee contribution amount resulting from the calculation. Will be zero if SalaryExchangeApplied is true.

decimal CalculatedEmployeeContributionAmount { get; }

Property Value

decimal

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

decimal

EarningsBasis

Gets the earnings basis for the pension calculation (e.g., Qualifying Earnings).

PensionsEarningsBasis EarningsBasis { get; }

Property Value

PensionsEarningsBasis

EmployeeAvcAmount

Gets any Additional Voluntary Contribution (AVC) made by the employee.

decimal? EmployeeAvcAmount { get; }

Property Value

decimal?

EmployeeContributionFixedAmount

Gets the employee's fixed contribution amount, if applicable. If supplied, overrides EmployeeContributionPercentage.

decimal? EmployeeContributionFixedAmount { get; }

Property Value

decimal?

EmployeeContributionPercentage

Gets the employee contribution percentage, expressed in percentage points, i.e., 5% = 5.0m.

decimal? EmployeeContributionPercentage { get; }

Property Value

decimal?

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

decimal?

EmployerContributionPercentage

Gets the employer contribution percentage, expressed in percentage points, i.e., 3% = 3.0m.

decimal EmployerContributionPercentage { get; }

Property Value

decimal

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

decimal?

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

decimal?

PensionableSalaryInPeriod

Gets the pensionable salary for the period.

decimal PensionableSalaryInPeriod { get; }

Property Value

decimal

SalaryExchangeApplied

Gets a value indicating whether salary exchange has been applied.

bool SalaryExchangeApplied { get; }

Property Value

bool

SalaryExchangedAmount

Gets the amount the employee's gross salary exchanged under a salary exchange arrangement.

decimal? SalaryExchangedAmount { get; }

Property Value

decimal?

TaxTreatment

Gets the pension tax treatment to be applied, i.e., relief at source vs net pay arrangement.

PensionTaxTreatment TaxTreatment { get; }

Property Value

PensionTaxTreatment

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.