public ActionResult Delete(int id)
 {
     try
     {
         _knowledgeTestService.Delete(_knowledgeTestService.GetById(id));
         SuccessNotification("Kayıt Silindi");
         return(RedirectToAction("KnowledgeTestIndex"));
     }
     catch
     {
         return(View());
     }
 }