Beispiel #1
0
 public void eliminar()
 {
     try
     {
         SIS_MENU m = new SIS_MENU {
             ID = int.Parse(UIID.Text)
         };
         manejadorData.eliminar(m);
         consultar();
     }
     catch (Exception e)
     {
         MetodosForm.mensajeErrorDefault(e.Message, _datasistema);
     }
 }