Struct PayDate
Represents a specific pay date for a specific pay frequency.
public readonly struct PayDate
- Inherited Members
Constructors
PayDate(DateOnly, PayFrequency)
Initialises a new PayDate based on the supplied date and pay frequency.
public PayDate(DateOnly date, PayFrequency payFrequency)
Parameters
date
DateOnlyPay date.
payFrequency
PayFrequencyPay frequency.
PayDate(int, int, int, PayFrequency)
Initialises a new PayDate based on the supplied date and pay frequency.
public PayDate(int year, int month, int day, PayFrequency payFrequency)
Parameters
year
intYear.
month
intMonth (1-12).
day
intDay.
payFrequency
PayFrequencyPay frequency.
Properties
Date
Gets the date of this PayDate.
public DateOnly Date { get; init; }
Property Value
PayFrequency
Gets the pay frequency for this PayDate.
public PayFrequency PayFrequency { get; init; }
Property Value
TaxPeriod
Gets the tax period for this PayDate, for example, a pay date of 20th May for a monthly payroll would be tax period 2.
public int TaxPeriod { get; init; }
Property Value
TaxYear
public TaxYear TaxYear { get; init; }
Property Value
Methods
GetWeekOrMonthNumber(out int, out bool)
Gets either the week number or the month number for this pay date, with the second out parameter indicating which.
public void GetWeekOrMonthNumber(out int periodNumber, out bool isWeekly)
Parameters
periodNumber
intWeek number or month number for this pay date.
isWeekly
boolTrue if the first out parameter is a week number, false indicates it is a month number.
ToString()
Provides a string representation of this pay date in the form 'dd/mm/yyyy (frequency, period)'.
public override string ToString()
Returns
Operators
implicit operator DateTime(PayDate)
Gets the equivalent DateTime for this paydate, with the time portion set to midday (12:00:00) UTC.
public static implicit operator DateTime(PayDate payDate)