@page "/quizstart" @using Blazored.LocalStorage; @using FWLAZ_Web.Data @using FWLAZ_Web.Objects @inject ILocalStorageService localStorage; @inject NavigationManager nav; @inject SessionState CurrentSession;
| Fragen Gesamt | @(CurrentSession.LoadGame.QuestionAnswers.Count) |
| Korrekt beantwortet | @(CurrentSession.LoadGame.QuestionAnswers.Where(qa => qa.IsCorrect).Count()) |
| Falsch beantwortet | @(CurrentSession.LoadGame.QuestionAnswers.Where(qa => !qa.IsCorrect).Count()) |