Class PayFrequencyExtensions
Extension methods for PayFrequency.
public static class PayFrequencyExtensions
- Inheritance
-
PayFrequencyExtensions
- Inherited Members
Methods
GetStandardTaxPeriodCount(PayFrequency)
Provides access to the number of tax periods within a tax year for a given PayFrequency.
public static int GetStandardTaxPeriodCount(this PayFrequency payFrequency)
Parameters
payFrequency
PayFrequencyPayFrequency to provide period count for.
Returns
- int
The number of tax periods within a tax year for a this PayFrequency, for example, PayFrequency.Monthly returns 12.
Exceptions
- ArgumentException
Thrown if an invalid PayFrequency value is supplied.
GetTaxPeriodLength(PayFrequency)
Provides access to the number of tax periods within a tax year for a given PayFrequency.
public static int GetTaxPeriodLength(this PayFrequency payFrequency)
Parameters
payFrequency
PayFrequencyPayFrequency to provide period count for.
Returns
- int
The number of tax periods within a tax year for a this PayFrequency, for example, PayFrequency.Monthly returns 12.
Exceptions
- ArgumentException
Thrown if an invalid PayFrequency value is supplied.
IsLastTaxPeriodInTaxYear(PayFrequency, int, bool)
Determines whether the specified tax period is the last tax period in the tax year.
public static bool IsLastTaxPeriodInTaxYear(this PayFrequency payFrequency, int taxPeriod, bool applyWeek53Treatment = false)
Parameters
payFrequency
PayFrequencyRelevant pay frequency.
taxPeriod
intTax period to evaluate.
applyWeek53Treatment
boolFlag that indicates whether to apply "week 53" treatment, i.e., where there are 53 weeks in a tax year (or 27 periods in a two-weekly pay cycle, etc.). Must be false for monthly, quarterly and annual payrolls. Optional, defaulting to false.
Returns
- bool
true if the supplied tax period is the last period in the tax year; false otherwise.