Class NiCalculator
- Namespace
- Payetools.NationalInsurance
- Assembly
- Payetools.NationalInsurance.dll
Represents a National Insurance calculator that implements INiCalculator.
public class NiCalculator : INiCalculator
- Inheritance
-
NiCalculator
- Implements
- Inherited Members
Constructors
NiCalculator(INiThresholdSet, INiPeriodThresholdSet, ReadOnlyDictionary<NiCategory, INiCategoryRatesEntry>, ReadOnlyDictionary<NiCategory, INiCategoryRatesEntry>, bool)
Initialises a new NiCalculator with the supplied thresholds and rates for the period.
public NiCalculator(INiThresholdSet niAnnualThresholds, INiPeriodThresholdSet niPeriodThresholds, ReadOnlyDictionary<NiCategory, INiCategoryRatesEntry> niRateEntriesForRegularEmployees, ReadOnlyDictionary<NiCategory, INiCategoryRatesEntry> niDirectorsRateEntries, bool isLastPayPeriodInTaxYear = false)
Parameters
niAnnualThresholds
INiThresholdSetNI threshold set for the full tax year applicable to this NI calculator.
niPeriodThresholds
INiPeriodThresholdSetNI threshold set for the tax period applicable to this NI calculator.
niRateEntriesForRegularEmployees
ReadOnlyDictionary<NiCategory, INiCategoryRatesEntry>NI rates for the tax period applicable to non-directors for this NI calculator.
niDirectorsRateEntries
ReadOnlyDictionary<NiCategory, INiCategoryRatesEntry>NI rates for the tax period applicable to directors for this NI calculator.
isLastPayPeriodInTaxYear
boolFlag indicating whether this calculator is being used to calculate NI for the last pay period of the tax year, which is required for directors' NI. Optional, defaulted to false.
Methods
Calculate(NiCategory, decimal, out INiCalculationResult)
Calculates the National Insurance contributions required for an employee for a given pay period, based on their NI-able salary and their allocated National Insurance category letter.
public void Calculate(NiCategory niCategory, decimal nicableEarningsInPeriod, out INiCalculationResult result)
Parameters
niCategory
NiCategoryNational Insurance category.
nicableEarningsInPeriod
decimalNI-able salary for the period.
result
INiCalculationResultThe NI contributions due via an instance of a type that implements INiCalculationResult.
CalculateDirectors(DirectorsNiCalculationMethod, NiCategory, decimal, decimal, decimal, decimal, decimal?, out INiCalculationResult)
Calculates the National Insurance contributions required for a company director for a given pay period, based on their NI-able salary and their allocated National Insurance category letter.
public void CalculateDirectors(DirectorsNiCalculationMethod calculationMethod, NiCategory niCategory, decimal nicableEarningsInPeriod, decimal nicableEarningsYearToDate, decimal employeesNiPaidYearToDate, decimal employersNiPaidYearToDate, decimal? proRataFactor, out INiCalculationResult result)
Parameters
calculationMethod
DirectorsNiCalculationMethodCalculation method to use.
niCategory
NiCategoryNational Insurance category.
nicableEarningsInPeriod
decimalNi-able earnings in this period.
nicableEarningsYearToDate
decimalNI-able salary for the period.
employeesNiPaidYearToDate
decimalTotal employees NI paid so far this tax year up to and including the end of the previous period.
employersNiPaidYearToDate
decimalTotal employers NI paid so far this tax year up to and including the end of the previous period.
proRataFactor
decimal?Factor to apply to annual thresholds when the employee starts being a director part way through the tax year. Null if not applicable.
result
INiCalculationResultThe NI contributions due via an instance of a type that implements INiCalculationResult.