tests for generic repository

This commit is contained in:
2024-09-16 20:58:09 +03:00
parent e39b8851fc
commit 7f54782a96
6 changed files with 119 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
using ApplicationLayer.InfrastructureServicesInterfaces;
namespace VisaApi.Services
{
public class TestDateTimeProvider : IDateTimeProvider
{
public DateTime Now() => DateTime.Now;
}
}