Table of Contents

Class NmwHourlyPaidPayStructure

Namespace
Payetools.Payroll.Model
Assembly
Payetools.Payroll.dll

Represents an hourly paid pay structure that tracks National Minimum/Living Wage levels.

public record NmwHourlyPaidPayStructure : IEmployeePayStructure, IEquatable<NmwHourlyPaidPayStructure>
Inheritance
NmwHourlyPaidPayStructure
Implements
Inherited Members
Extension Methods

Properties

Id

Gets the unique ID for this pay structure.

public Guid Id { get; init; }

Property Value

Guid

PayComponent

Gets the pay component that this pay structure is based on.

public IEarningsDetails PayComponent { get; init; }

Property Value

IEarningsDetails

PayRate

Gets the rate of pay. The type of this rate of pay is given by PayRateType.

public decimal PayRate { get; }

Property Value

decimal

PayRateType

Gets the type of pay that PayRate represents.

public PayRateType PayRateType { get; }

Property Value

PayRateType

Methods

UpdateNmw(INmwEvaluator, DateRange, DateOnly)

Updates the PayRate based on the applicable NMW/NLW wage rate for the employee using their age at the start of the pay period.

public void UpdateNmw(INmwEvaluator nmwEvaluator, DateRange payPeriod, DateOnly dateOfBirth)

Parameters

nmwEvaluator INmwEvaluator

Instance of INmwEvaluator used to obtain the appropriate rate.

payPeriod DateRange

Pay period pertaining.

dateOfBirth DateOnly

Employee's date of birth.