var obj = _httpContextAccessor.HttpContext;
var currentAccountId = _httpContextAccessor.HttpContext
.User.Claims
.FirstOrDefault(c => c.Type == "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name")?.Value;
var account = _accountService.GetAccountById(int.Parse(currentAccountId));