Fix user services

This commit is contained in:
Sergio Matias Urquin
2025-08-31 17:55:58 -06:00
parent 87fa0e67ef
commit e25a982b55
6 changed files with 4 additions and 8 deletions

View File

@@ -234,6 +234,7 @@ namespace Core.Thalos.Application.UseCases.Users
MiddleName = command.MiddleName,
LastName = command.LastName,
RoleId = command.RoleId,
TenantId = command.TenantId
};
var result = await _thalosDALService.UpdateUserAsync(request, request._Id, cancellationToken).ConfigureAwait(false);