public int AddCountryService(Country country)
 {
     try
     {
         return(_countryRepository.AddItem(country));
     }
     catch (Exception e)
     {
         MessageBox.Show("Hata : " + e.Message);
         return(0);
     }
 }