feat(udt-001): application layer with LoginCommandHandler and ports

This commit is contained in:
2026-04-13 21:36:01 -03:00
parent 2111070c77
commit 8c26cd3ac5
12 changed files with 168 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
using SIGCM2.Domain.Entities;
namespace SIGCM2.Application.Abstractions.Persistence;
public interface IUsuarioRepository
{
Task<Usuario?> GetByUsernameAsync(string username);
}