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
boolTrue if the pay is compliant with the regulations; false otherwise.
nmwLevelApplied
decimal?NMW/NLW level used for compliance checking.
ageAtStartOfPayPeriod
intAge at the start of the pay period (in whole years).
commentary
stringHuman-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
Commentary
Gets the human-readable commentary relating to this evaluation. May be empty.
public string Commentary { get; }
Property Value
IsCompliant
Gets a value indicating whether an individual's pay is compliant with the NMW/NLW regulations.
public bool IsCompliant { get; }
Property Value
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; }