using System;
namespace UnicornStore.Components
{
///
/// Abstracts the system clock to facilitate testing.
///
public interface ISystemClock
{
///
/// Gets a DateTime object that is set to the current date and time on this computer,
/// expressed as the Coordinated Universal Time(UTC)
///
DateTime UtcNow { get; }
}
}