Class NmwHourlyPaidPayStructure
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
PayComponent
Gets the pay component that this pay structure is based on.
public IEarningsDetails PayComponent { get; init; }
Property Value
PayRate
Gets the rate of pay. The type of this rate of pay is given by PayRateType.
public decimal PayRate { get; }
Property Value
PayRateType
Gets the type of pay that PayRate represents.
public PayRateType PayRateType { get; }
Property Value
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
INmwEvaluatorInstance of INmwEvaluator used to obtain the appropriate rate.
payPeriod
DateRangePay period pertaining.
dateOfBirth
DateOnlyEmployee's date of birth.