Temporary solution for UserContext (callerId)

This commit is contained in:
Veljko Tosic
2026-02-11 21:59:08 +01:00
parent d1bf7d3558
commit fcedc54446
4 changed files with 38 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
using AipsCore.Application.Abstract.UserContext;
using AipsCore.Domain.Models.User.ValueObjects;
namespace AipsCore.Infrastructure;
public class UserContext : IUserContext
{
public UserId GetCurrentUserId()
{
return new UserId(new Guid("156b58b0-d0f1-4498-b2b6-afa536b68b1a").ToString());
}
}
//Ovo je samo trenutno resenje