Ejemplo n.º 1
0
 public IActionResult RemoveAnswer(int testId, int questionId, int answerId)
 {
     repository.RemoveAnswerFromQuestion(testId, questionId, answerId);
     return(RedirectToAction(nameof(EditQuestion), new { testId = testId, questionId = questionId }));
 }