/// <summary> /// Determines whether the specified destination is after. /// </summary> /// <param name="source">The source.</param> /// <param name="destination">The destination.</param> /// <param name="redundancy">The redundancy.</param> /// <returns><c>true</c> if the specified destination is after; otherwise, <c>false</c>.</returns> public static bool IsAfter(this DateTime source, DateTime destination, TimeSpan redundancy) { return(DateTimeUtility.IsAfter(source, destination, redundancy)); }
/// <summary> /// Determines whether the specified destination is after. /// </summary> /// <param name="source">The source.</param> /// <param name="destination">The destination.</param> /// <returns><c>true</c> if the specified destination is after; otherwise, <c>false</c>.</returns> public static bool IsAfter(this DateTime source, DateTime destination) { return(DateTimeUtility.IsAfter(source, destination)); }