ex-inh-02-pets/PetsAndFleas/DateTimeProvider.cs
github-classroom[bot] 67196c7395
Initial commit
2025-02-25 16:59:47 +00:00

19 lines
466 B
C#

namespace PetsAndFleas;
/// <summary>
/// Provides the current time
/// </summary>
public sealed class DateTimeProvider
{
private DateTime? _overriddenDateTime;
/// <summary>
/// Gets the current time.
/// Can be set to a specific value which will then be returned in the future.
/// </summary>
public DateTime Now
{
get => _overriddenDateTime ?? DateTime.Now;
set => _overriddenDateTime = value;
}
}