Package fing.satode.dominio

Examples of fing.satode.dominio.GestionNecesidad


    return listaDTOS;
  }

  public GestionNecesidadDTO buscarGestionNecesidadPorNecesidad(Long idNecesidad) {
    // TODO Auto-generated method stub
    GestionNecesidad gesnec= NecesidadesDAO.getInstance().buscarGestionNecesidadPorNecesidad(idNecesidad);
    if(gesnec!=null){
      return gesnec.getDTO();
    }else{
      return null;
    }
  }
View Full Code Here


      return null;
    }
  }

  public void nuevoGestionNecesidad(GestionNecesidadDTO dto) {
    GestionNecesidad necesidad= new GestionNecesidad(dto);
    NecesidadesDAO.getInstance().nuevoGestionNecesidad(necesidad);
    dto.setId(necesidad.getId());
  }
View Full Code Here

    NecesidadesDAO.getInstance().nuevoGestionNecesidad(necesidad);
    dto.setId(necesidad.getId());
  }
 
  public void modificarGestionNecesidad(GestionNecesidadDTO dto) {
    GestionNecesidad necesidad= new GestionNecesidad(dto);
    NecesidadesDAO.getInstance().modificarGestionNecesidad(necesidad);
  }
View Full Code Here

TOP

Related Classes of fing.satode.dominio.GestionNecesidad

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.