public static ArrayList ShowAllOfferedCourseC()
        {
            ArrayList x = new ArrayList();

            x = OfferedCourses.GetAllCourses();
            return(x);
        }
        public static bool AddOfferedCourse(string x, string y, string z, string n, string b)
        {
            bool a = OfferedCourses.AddOfrCourseMdl(x, y, z, n, b);

            return(a);
        }