Esempio n. 1
0
 public Beans_InstructWO() {
   listeInstructWOItem = new ArrayList<SelectItem>();
   List<InstructWO> instructWO = new DAO.DAO_InstructWo().GET_ALL();
   for (InstructWO inst : instructWO) {
     listeInstructWOItem.add(new SelectItem(inst.getId_WO()));
   }
 }