Package base

Examples of base.Servicio


  }

  private void clickEnTablaServicios() {
    int id = Integer.parseInt((String) table.getValueAt(table.getSelectedRow(), 0));

    Servicio servicio = ServicioDTO.buscarServicio(id);

    textoId = String.valueOf(servicio.getIdServicio());
   
    servicio = null;
  }
View Full Code Here


          this.jTable1 = jTable1;
      }

      public void actionPerformed(ActionEvent e) {
       
          Servicio s = new Servicio();
          s = ServicioDTO.buscarServicio((Integer.parseInt((String) jTable1.getValueAt(fila, 0))));
          if (columna == 7){
            int option=JOptionPane.showConfirmDialog(null, "�Seguro que desea eliminar el servicio?");
               if (option==JOptionPane.YES_OPTION)
                 ServicioDTO.EliminaServicio(s);
View Full Code Here

      }

      public void actionPerformed(ActionEvent e) {
       
        int id = Integer.parseInt((String) a.table.getValueAt(fila, 0));
          Servicio servicio = halconController.GetServicioById(id);
         
          if (columna == mod){
            ModificarServicio m = new ModificarServicio(this.a, servicio);
            a.removeAll();
            a.add(m);
View Full Code Here

TOP

Related Classes of base.Servicio

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.