Package sn.unitech.stock.entity

Examples of sn.unitech.stock.entity.SysNiveau


      List<SysActivite> listActivite= iActiviteDao.getResultList(jpql, null, null);
      List<SysAdherActivite> listAdherActivite=new ArrayList<SysAdherActivite>();
      SysAdherActivite sysAdherActivite;
      for(SysActivite activite:listActivite){
        sysAdherActivite=new SysAdherActivite(new SysAdherActiviteId(adherent.getIdAdherent(),activite.getIdActivite()),activite,adherent);
        sysAdherActivite.setSysNiveau(new SysNiveau());
        listAdherActivite.add(sysAdherActivite);
      }
      return listAdherActivite;
    }
View Full Code Here

TOP

Related Classes of sn.unitech.stock.entity.SysNiveau

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.