2025-02-26 23:49:16 +04:00

11 lines
219 B
C#

using System;
namespace CandyHouseBase.Exceptions;
public static class DateTimeExtensions
{
public static bool IsDateNotOlder(this DateTime date, DateTime olderDate)
{
return date >= olderDate;
}
}