Files
schengen-visa/ApplicationLayer/InfrastructureServicesInterfaces/IDateTimeProvider.cs
2025-10-05 14:32:06 +03:00

7 lines
161 B
C#

namespace ApplicationLayer.InfrastructureServicesInterfaces;
public interface IDateTimeProvider
{
/// Returns current date and time
DateTime Now();
}