Table of Contents

Interface INiThresholdSet

Namespace
Payetools.NationalInsurance.ReferenceData
Assembly
Payetools.NationalInsurance.dll

Interface for types that represent a list of National Insurance thresholds as defined by HMRC for a given tax year or portion of a tax year. The list isn't specifically ordered; the items within the list provide their own mapping to NiThresholdType values.

public interface INiThresholdSet : IEnumerable<INiThresholdEntry>, IEnumerable
Inherited Members
Extension Methods

Properties

Count

Gets the number of threshold value this threshold set contains.

int Count { get; }

Property Value

int

this[int]

Gets the INiThresholdEntry at the specified index.

INiThresholdEntry this[int index] { get; }

Parameters

index int

Zero-based index into list.

Property Value

INiThresholdEntry

The INiThresholdEntry for the specified index.

Methods

GetThreshold(NiThresholdType)

Gets the annual threshold for the period for the specified threshold type.

decimal GetThreshold(NiThresholdType thresholdType)

Parameters

thresholdType NiThresholdType

Applicable threshold (e.g., LEL, UEL, PT).

Returns

decimal

Annual threshold value applicable to threshold type.