private void PopulateDepartmentsComboBox()
        {
            string DepartmentQuery = DepartmentsRepository.GetQuery();
            string SectionsQuery   = SectionsRepository.GetQuery();

            Lists.FillDropDownList2(SectionsQuery, "Description", DepartmentQuery, "Title", DepartmentComboBox);
        }