public List <Models.Lookup.CourseModel> GetCourses()
        {
            BusinessLogic.Lookup.CourseManager CourseManager = new BusinessLogic.Lookup.CourseManager();

            List <BusinessEntity.Lookup.CourseEntity> Courses      = CourseManager.GetCourses();
            List <Models.Lookup.CourseModel>          CourseModels = new List <Models.Lookup.CourseModel>();

            foreach (BusinessEntity.Lookup.CourseEntity Course in Courses)
            {
                CourseModels.Add(new Models.Lookup.CourseModel(Course));
            }

            return(CourseModels);
        }