public bool GetAllQuestions(ref DataTable dt)
       {
           QuestAnsDAL QuestDAL = new QuestAnsDAL();

           if (QuestDAL.GetAllQuestions(ref dt))
           {
               return true;
           }
           else
           {
               return false;
           }
       }