public async Task <IActionResult> Fetch(long id) { var quiz = await Quizzes.Fetch(id); if (quiz == null) { return(NotFound()); } return(Ok(quiz)); }