Examples of GestionNecesidad


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

Examples of fing.satode.dominio.GestionNecesidad

      return null;
    }
  }

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

Examples of fing.satode.dominio.GestionNecesidad

    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
Copyright © 2018 www.massapi.com. 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.