Itenso.TimePeriodTests.SchoolDay.GetDefaultStartDate C# (CSharp) Method

GetDefaultStartDate() private static method

private static GetDefaultStartDate ( IClock clock ) : System.DateTime
clock IClock
return System.DateTime
        private static DateTime GetDefaultStartDate( IClock clock )
        {
            if ( clock == null )
            {
                clock = ClockProxy.Clock;
            }
            DateTime now = clock.Now;
            return new DateTime( now.Year, now.Month, now.Day, 8, 0, 0 );
        }