user create command and user repo

This commit is contained in:
2026-02-04 22:18:05 +01:00
parent b73fd8eb05
commit 01f25fb093
10 changed files with 136 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
using AipsCore.Domain.Models.User.ValueObjects;
namespace AipsCore.Domain.Models.User.External;
public interface IUserRepository
{
Task<User?> Get(UserId userId, CancellationToken cancellationToken = default);
Task Save(User user, CancellationToken cancellationToken = default);
}