public void dropStudent(int SID, int CID)
        {
            Student s = this.getStudentByID(SID);
            Course  c = this.getCourseByID(CID);

            if (s == null || c == null)
            {
                MessageBox.Show("ERROR: SID Or CID DNE");
            }
            else
            {
                s.dropClass(c);
                c.dropStu(s);
            }
        }