public int CountStudents()
        {
            int count = 0;

            StudentDAO st = new StudentDAO();

            count = st.GetCount();

            return(count);
        }