feat: implement PmUserQueryService and integrate into AccountApplication for user ID retrieval

This commit is contained in:
2025-12-13 18:38:08 +03:30
parent a4bf6c952d
commit 58816ca383
5 changed files with 42 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
namespace Shared.Contracts.PmUser;
public interface IPmUserQueryService
{
Task<long?> GetCurrentPmUserIdFromAccountId(long accountId);
}