using eSuite.Core.Clock;
namespace e_suite.UnitTestCore;
public class FakeClock : IClock
{
///
/// You can set the date and time using this property.
///
public DateTimeOffset DateTime { get; set; } = DateTimeOffset.UtcNow;
///
/// The application will user this to get the current date and time.
///
public DateTimeOffset GetNow => DateTime;
}