Fixed error with designation name

This commit is contained in:
2026-03-28 21:04:29 +01:00
parent 147c1ff5df
commit 815cbb0fc2
4 changed files with 6 additions and 4 deletions
@@ -8,6 +8,7 @@ public class GetUserByIdSpec : SingleResultSpecification<User>
public GetUserByIdSpec(int userId)
{
Query
.Include(x => x.Designation)
.Where(x => x.Id == userId);
}
}