Package ar.com.AmberSoft.iEvenTask.services

Examples of ar.com.AmberSoft.iEvenTask.services.CreateTaskService


          nuevosVisibles.add(visibleRelation.getUsuario());
        }
        params.put(ParamsConst.USERS_VIEW, nuevosVisibles);
      }
     
      CreateTaskService service = new CreateTaskService();
      params.put(ParamsConst.ESTADO, StatusConst.PENDIENTE);
      params.put(ParamsConst.GET_ENTITY, Boolean.TRUE);
      Map result = service.execute(params);
      Tarea tarea = (Tarea) result.get(ParamsConst.ENTITY);
      this.setTarea(tarea);

      result.put(ParamsConst.ENTITY, this);
      UpdateEntityService updateEntityService = new UpdateEntityService();
View Full Code Here

TOP

Related Classes of ar.com.AmberSoft.iEvenTask.services.CreateTaskService

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.