Files
schengen-visa/SchengenVisaApi/ApplicationLayer/InfrastructureServicesInterfaces/IDateTimeProvider.cs
2024-08-26 11:33:31 +03:00

7 lines
161 B
C#

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