public async Task <IActionResult> GetQuestion(int id) { var questionRepo = await _repo.GetQuestion(id); return(Ok(questionRepo)); }