Interface INiCalculator
- Namespace
- Payetools.NationalInsurance
- Assembly
- Payetools.NationalInsurance.dll
Interface for types that provide National Insurance calculations.
public interface INiCalculator
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.
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.
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 to date.
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.