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
IEmployeePayStructureIEmployeePayStructure instance.
quantity
decimalAmount of time/unit to calculate pay for.
units
PayRateUnitsUnits 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
IEmployeePayStructureIEmployeePayStructure instance.
payFrequency
PayFrequencyPay frequency.
Returns
- decimal
Pay for the period.
Exceptions
- ArgumentException
Thrown if the pay structure does not refer to an annually paid employee.