using System;
namespace Wayne.Lib
{
///
/// Interface to the Wayne time abstraction, should be used instead of DateTime.Now.
///
public interface ISystemTime
{
///
/// Current date and time.
///
DateTime Now { get; }
///
/// Sets the system time. Time specified as UTC
///
///
///
void SetSystemTime(DateTime newTime);
///
/// Set local time, in local time zone.
///
///
void SetLocalTime(DateTime newTime);
}
}