private void LoadCountryDropDown()
        {
            List <Country> departments = countryManager.GetAllCountryNames();

            countryDropDownList.DataSource     = departments;
            countryDropDownList.DataTextField  = "Name";
            countryDropDownList.DataValueField = "Id";
            countryDropDownList.DataBind();
        }