public async Task <JsonResult> NameIsUnique(string name)
        {
            bool countryNotExists = await _countryManager.CountryNotExists(name);

            return(Json(countryNotExists));
        }