Interface INmwEvaluator
- Namespace
- Payetools.NationalMinimumWage
- Assembly
- Payetools.NationalMinimumWage.dll
Interface for types that provide National Minimum/Living Wage evaluations.
public interface INmwEvaluator
Methods
Evaluate(DateRange, DateOnly, decimal, decimal, bool, decimal?)
Evauates whether an employee's pay is compliant with the NMW/NLW regulations by considering their pay, hours and date of birth. Note that apprentices have special treatment.
NmwEvaluationResult Evaluate(DateRange payPeriod, DateOnly dateOfBirth, decimal grossPay, decimal hoursWorkedForPay, bool isApprentice = false, decimal? yearsAsApprentice = null)
Parameters
payPeriod
DateRangeApplicable pay period.
dateOfBirth
DateOnlyEmployee's date of birth.
grossPay
decimalGross pay to be used for the evaluation. This pay should correspond to the number of hours worked given in the subequent parameter.
hoursWorkedForPay
decimalHours worked that corresponds to the gross pay figure supplied.
isApprentice
boolTrue if the employee is an apprentice; false otherwise. Optional, defaults to false.
yearsAsApprentice
decimal?Number of years an apprentice has served in their apprenticeship. May be a figure less than one. Optional, defaults to null; not required if the employee is not an apprentice.
Returns
- NmwEvaluationResult
An instance of NmwEvaluationResult that indicates whether the pay is compliant with the NMW/NLW regulations.
Remarks
As per https://www.gov.uk/hmrc-internal-manuals/national-minimum-wage-manual/nmwm03010, the rate that applies to each worker depends on their age at the start of the pay reference period.
GetNmwHourlyRateForEmployee(int, bool, decimal?)
Gets the expected hourly rate of pay for an employee that is paid is the National Minimum or National Living Wage.
decimal GetNmwHourlyRateForEmployee(int ageAtStartOfPeriod, bool isApprentice = false, decimal? yearsAsApprentice = null)
Parameters
ageAtStartOfPeriod
intAge at the start of the applicable pay period.
isApprentice
boolTrue if the employee is an apprentice; false otherwise. Optional, defaults to false.
yearsAsApprentice
decimal?Number of years an apprentice has served in their apprenticeship. May be a figure less than one. Optional, defaults to null; not required if the employee is not an apprentice.
Returns
- decimal
Appropriate hourly rate of pay.
Remarks
As per https://www.gov.uk/hmrc-internal-manuals/national-minimum-wage-manual/nmwm03010, the rate that applies to each worker depends on their age at the start of the pay reference period.