Files
PIBD-23_Coursach_YouAreProg…/YouAreProgrammerShop/YAPContracts/Extentions/DateTimeExtention.cs

17 lines
368 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YAPContracts.Extentions
{
public static class DateTimeExtention
{
public static bool IsNotLaterThan(this DateTime dateTime, DateTime olderDateTime)
{
return dateTime >= olderDateTime;
}
}
}