feat: replace manual event search in favor of dto builders

This commit is contained in:
2025-06-01 23:55:43 +02:00
parent 07128948b0
commit 42fd94e5ac
6 changed files with 118 additions and 94 deletions

View File

@@ -229,7 +229,7 @@ namespace WebApp.Endpoints
.Include(vs => vs.Skill)
.Select(vs => new
{
skillId = vs.Skill.SkillId,
skillId = vs.Skill!.SkillId,
skillName = vs.Skill.Name
})
.ToListAsync();