Remove parsing of short into integer (#14721)

This commit is contained in:
Bjarke Berg
2023-08-25 13:07:42 +02:00
parent f97e9a9f34
commit 3a53f51ef3

View File

@@ -78,7 +78,7 @@ internal static class UserGroupFactory
if (entity.HasIdentity)
{
dto.Id = short.Parse(entity.Id.ToString());
dto.Id = entity.Id;
}
return dto;