Ejemplo n.º 1
0
 private void Delete_Click(object sender, RoutedEventArgs e)
 {
     if (this.GolonganKontakSelected == null)
     {
         MessageBox.Show("Salary Group has not been selected !");
     }
     else
     {
         GolonganKontakBLL GolonganKontakBLL = new GolonganKontakBLL();
         if (GolonganKontakBLL.RemoveGolonganKontak(this.GolonganKontakSelected.Id) == true)
         {
             MessageBox.Show("Salary Group was deleted successfully");
             this.LoadGolonganKontak("");
             this.GolonganKontakSelected = null;
         }
     }
 }