feat(repository): Implementieren Sie ProfileRepository mit ReadAsync unter Verwendung von FNMWF_GET_PROFILES.

This commit is contained in:
2025-07-24 11:24:20 +02:00
parent 30bb3ffa11
commit 8c08beba4e
3 changed files with 32 additions and 2 deletions

View File

@@ -1,5 +1,8 @@
namespace WorkFlow.Application.Contracts.Repositories;
using WorkFlow.Domain.Entities;
namespace WorkFlow.Application.Contracts.Repositories;
public interface IProfileRepository
{
Task<Profile?> ReadAsync(int userId);
}