add architecture skeleton
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
using GymLogAI.Core.Abstractions;
|
||||
|
||||
namespace GymLogAI.Persistence.Infrastructure;
|
||||
|
||||
public sealed class GuidIdGenerator : IIdGenerator
|
||||
{
|
||||
public Guid New() => Guid.NewGuid();
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
using GymLogAI.Core.Abstractions;
|
||||
|
||||
namespace GymLogAI.Persistence.Infrastructure;
|
||||
|
||||
public sealed class SystemClock : IClock
|
||||
{
|
||||
public DateTime UtcNow => DateTime.UtcNow;
|
||||
}
|
||||
Reference in New Issue
Block a user