Package com.structis.fichesst.server.bean.domain

Examples of com.structis.fichesst.server.bean.domain.RefTransfertPP


  private static void setIds(List<FicheTransfertpp> list) {
    try {
      for( FicheTransfertpp ficheTransfertpp : list ) {
        Chantier chantier = ficheTransfertpp.getChantier();
        RefTransfertPP refTransfertPp = ficheTransfertpp.getRefTransfertPp();

        FicheTransfertppPk ficheTransfertppPk = new FicheTransfertppPk(chantier.getId(), refTransfertPp.getId());
        ficheTransfertpp.setId(ficheTransfertppPk);
      }
    }
    catch( Exception e ) {
      LOGGER.error(e.getMessage(), e);
View Full Code Here


  public SimpleDto findById(final Integer id) {
    ManagerCallBack manager = new ManagerCallBack() {

      @Override
      public Object execute(Object... inputs) throws Exception {
        RefTransfertPP ref = refTransfertppService.find(id);
        return ref;
      }
    };
    SimpleDto simple = (SimpleDto) callManager(manager, id);
    return simple;
View Full Code Here

TOP

Related Classes of com.structis.fichesst.server.bean.domain.RefTransfertPP

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.