Check if a date is a weekday (Monday to Friday)
static bool isWeekday(DateTime date) { return !isWeekend(date); }