Table of Contents

Class NmwEvaluatorFactory

Namespace
Payetools.NationalMinimumWage
Assembly
Payetools.NationalMinimumWage.dll

Factory to generate INmwEvaluator implementations that are for a given pay date.

public class NmwEvaluatorFactory : INmwEvaluatorFactory
Inheritance
NmwEvaluatorFactory
Implements
Inherited Members

Constructors

NmwEvaluatorFactory(INmwReferenceDataProvider)

Initialises a new instance of NmwEvaluatorFactory with the supplied INmwReferenceDataProvider.

public NmwEvaluatorFactory(INmwReferenceDataProvider provider)

Parameters

provider INmwReferenceDataProvider

Reference data provider used to seed new NMW/NLW evaluators.

Methods

GetEvaluator(PayDate)

Gets a new INmwEvaluator based on the specified pay date. The pay date is provided in order to determine which set of level to use, noting that these may (but rarely do) change in-year.

public INmwEvaluator GetEvaluator(PayDate payDate)

Parameters

payDate PayDate

Applicable pay date.

Returns

INmwEvaluator

A new evaluator instance.

GetEvaluator(TaxYear, PayFrequency, int)

Gets a new INmwEvaluator based on the specified tax year, pay frequency and pay period, along with the applicable number of tax periods. The tax year, pay frequency and pay period are provided in order to determine which set of thresholds and rates to use, noting that these may change in-year.

public INmwEvaluator GetEvaluator(TaxYear taxYear, PayFrequency payFrequency, int taxPeriod)

Parameters

taxYear TaxYear

Applicable tax year.

payFrequency PayFrequency

Applicable pay frequency.

taxPeriod int

Applicable tax period.

Returns

INmwEvaluator

A new evaluator instance.