//SINAV DETAY SAYFASI
        public ActionResult DetailExam(string ID)
        {
            QuestionsDA qda = new QuestionsDA();

            DataModel.QuestionsModel qdm = new DataModel.QuestionsModel();
            qdm = qda.DetailExam(Convert.ToInt32(ID));

            return(View(qdm));
        }
        //DOĞRU CEVAP KONTROL
        public JsonResult ControlReply(string q1, string q2, string q3, string q4, string ID)
        {
            QuestionsDA qda = new QuestionsDA();

            DataModel.QuestionsModel qdm = new DataModel.QuestionsModel();
            qdm = qda.DetailExam(Convert.ToInt32(ID));

            return(Json(new { success = true, data = qdm }));
            //return Json(qdm);
        }