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
INmwReferenceDataProviderReference 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
PayDateApplicable 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
TaxYearApplicable tax year.
payFrequency
PayFrequencyApplicable pay frequency.
taxPeriod
intApplicable tax period.
Returns
- INmwEvaluator
A new evaluator instance.