Пример #1
0
 private void btnGuardar_Click(object sender, EventArgs e)
 {
     if (esnuevo == true)
     {
         srv.addUbicacion(interfaceDatos());
         frmPadre.listar();
         this.Close();
     }
     else
     {
         srv.updateUbicacion(interfaceDatos());
         frmPadre.listar();
         this.Close();
     }
 }