Table of Contents

Struct NmwEvaluationResult

Namespace
Payetools.NationalMinimumWage
Assembly
Payetools.NationalMinimumWage.dll

Represents the result of an NMW/NLW evaluation for a particular individual for particular pay period.

public readonly struct NmwEvaluationResult
Inherited Members

Constructors

NmwEvaluationResult(bool, decimal?, int, string)

Initialises a new instance of NmwEvaluationResult.

public NmwEvaluationResult(bool isCompliant, decimal? nmwLevelApplied, int ageAtStartOfPayPeriod, string commentary)

Parameters

isCompliant bool

True if the pay is compliant with the regulations; false otherwise.

nmwLevelApplied decimal?

NMW/NLW level used for compliance checking.

ageAtStartOfPayPeriod int

Age at the start of the pay period (in whole years).

commentary string

Human-readable commentary on the evaluation.

Properties

AgeAtStartOfPayPeriod

Gets the age of the individual at the start of the pay period.

public int AgeAtStartOfPayPeriod { get; }

Property Value

int

Commentary

Gets the human-readable commentary relating to this evaluation. May be empty.

public string Commentary { get; }

Property Value

string

IsCompliant

Gets a value indicating whether an individual's pay is compliant with the NMW/NLW regulations.

public bool IsCompliant { get; }

Property Value

bool

NmwLevelApplied

Gets the level (hourly rate) used to verify the employee's compliance with the regulations. Null if no level applies.

public decimal? NmwLevelApplied { get; }

Property Value

decimal?