Table of Contents

Class IEmployeePayStructureExtensions

Namespace
Payetools.Payroll.Extensions
Assembly
Payetools.Payroll.dll

Extension methods for IEmployeePayStructure.

public static class IEmployeePayStructureExtensions
Inheritance
IEmployeePayStructureExtensions
Inherited Members

Methods

GetPayForPeriod(IEmployeePayStructure, decimal, PayRateUnits)

Calculates the pay for the period based on the specified amount of time/unit. Currently only supports hourly pay.

public static decimal GetPayForPeriod(this IEmployeePayStructure value, decimal quantity, PayRateUnits units)

Parameters

value IEmployeePayStructure

IEmployeePayStructure instance.

quantity decimal

Amount of time/unit to calculate pay for.

units PayRateUnits

Units for quantity.

Returns

decimal

Pay for the period.

GetPayForSinglePeriod(IEmployeePayStructure, PayFrequency)

Calculates the pay for one period at the specified pay frequency.

public static decimal GetPayForSinglePeriod(this IEmployeePayStructure value, PayFrequency payFrequency)

Parameters

value IEmployeePayStructure

IEmployeePayStructure instance.

payFrequency PayFrequency

Pay frequency.

Returns

decimal

Pay for the period.

Exceptions

ArgumentException

Thrown if the pay structure does not refer to an annually paid employee.