public IActionResult Exam(long id, long type)
        {
            List <ExamModel> UserExamModels = new List <ExamModel>();

            UserExamModels = _ExamService.ExamViewModel(type, id);
            return(View(UserExamModels));
        }