Exemplo n.º 1
0
        public IActionResult DeleteExamModel(long id)
        {
            var exam = _ExamService.GetExamModelById(id);

            _ExamService.DeleteExamModelById(id);
            return(RedirectToAction(nameof(GetAllExamModelsByQ), exam.QClassId));
        }