/// <summary>
 /// Gets whether the specified <paramref name="date"/> is a weekday.
 /// </summary>
 /// <param name="date">The date.</param>
 /// <returns>
 /// Returns <c>true</c> if the specified day is weekday; otherwise <c>false</c>.
 /// </returns>
 public static bool IsWeekday(DateTimeOffset date)
 {
     return(TimeUtils.IsWeekday(date));
 }