private void ValidateCountryModel(Country country)
 {
     if (_countryService.IsNameDuplicated(country.Name))
     {
         ModelState.AddModelError(ViewRes.Controllers.Shared.Name, ViewRes.Controllers.Shared.NameText);
     }
 }