private void btnSave_Click(object sender, EventArgs e)
 {
     if (country == null)
     {
         Country newCountry = new Country();
         newCountry = fillObject(newCountry);
         if (newCountry != null)
         {
             var registered = _countryService.Insert(newCountry);
             if (registered)
             {
                 MessageBox.Show("U regjistrua me sukses");
                 this.Close();
             }
             else
             {
                 MessageBox.Show("Regjistrimi deshtoi. Ju lutem kontrolloni formen");
             }
         }
     }
     else
     {
         country = fillObject(country);
         var updated = _countryService.Update(country);
         if (updated)
         {
             MessageBox.Show("U editua me sukses");
             this.Close();
         }
         else
         {
             MessageBox.Show("Editimi deshtoi. Ju lutem kontrolloni formen");
         }
     }
 }