Interface IEmployeeNiHistoryEntry
- Namespace
- Payetools.NationalInsurance.Model
- Assembly
- Payetools.NationalInsurance.dll
Interface that represents once element of the employee's NI history during the current tax year. For employees that have only have one NI category throughout the tax year, they will have just one instance of EmployeeNiHistoryEntry applicable. But it is of course possible for an employee's NI category to change throughout the tax year (for example because they turned 21 years of age), and in this case, multiple records must be held.
public interface IEmployeeNiHistoryEntry
Properties
EarningsAboveFUSTUpToAndIncludingUEL
Gets the earnings up above the Freeport Upper Secondary Threshold and up to and including the Upper Earnings Limit for this record.
decimal EarningsAboveFUSTUpToAndIncludingUEL { get; }
Property Value
EarningsAboveLELUpToAndIncludingST
Gets the earnings up above the Lower Earnings Limit and up to and including the Secondary Threshold for this record.
decimal EarningsAboveLELUpToAndIncludingST { get; }
Property Value
EarningsAbovePTUpToAndIncludingFUST
Gets the earnings up above the Primary Threshold and up to and including the Freeport Upper Secondary Threshold for this record.
decimal EarningsAbovePTUpToAndIncludingFUST { get; }
Property Value
EarningsAboveSTUpToAndIncludingPT
Gets the earnings up above the Secondary Threshold and up to and including the Primary Threshold for this record.
decimal EarningsAboveSTUpToAndIncludingPT { get; }
Property Value
EarningsAboveSTUpToAndIncludingUEL
Gets the earnings up above the Secondary Threshold and up to and including the Upper Earnings Limit for this record.
decimal EarningsAboveSTUpToAndIncludingUEL { get; }
Property Value
EarningsAboveUEL
Gets the earnings up above the Upper Earnings Limit for this record.
decimal EarningsAboveUEL { get; }
Property Value
EarningsUpToAndIncludingLEL
Gets the earnings up to and including the Lower Earnings Limit for this record.
decimal EarningsUpToAndIncludingLEL { get; }
Property Value
EmployeeContribution
Gets the total employee contribution made during the duration of this record.
decimal EmployeeContribution { get; }
Property Value
EmployerContribution
Gets the total employer contribution made during the duration of this record.
decimal EmployerContribution { get; }
Property Value
GrossNicableEarnings
Gets the gross NI-able earnings applicable for the duration of this record.
decimal GrossNicableEarnings { get; }
Property Value
NiCategoryPertaining
Gets the National Insurance category letter pertaining to this record.
NiCategory NiCategoryPertaining { get; }
Property Value
TotalContribution
Gets the total contribution (employee + employer) made during the duration of this record.
decimal TotalContribution { get; }
Property Value
Methods
Add(in INiCalculationResult)
Adds the results of an NI calculation to the current history and returns a new instance of IEmployeeNiHistoryEntry with the results applied.
IEmployeeNiHistoryEntry Add(in INiCalculationResult result)
Parameters
result
INiCalculationResultNI calculation results to add to this history entry.
Returns
- IEmployeeNiHistoryEntry
New instance of IEmployeeNiHistoryEntry with the NI calculation result applied.