Package org.libreplan.ws.resources.api

Examples of org.libreplan.ws.resources.api.ResourceWorkedHoursDTO


        List<Object[]> hoursPerWorker = workerDAO
                .getWorkingHoursGroupedPerWorker(workerCodes, startingDate,
                        endingDate);

        for (Object[] pair : hoursPerWorker) {
            ResourceWorkedHoursDTO resourceWorkedHoursDTO = new ResourceWorkedHoursDTO(
                    (String) pair[0], EffortDuration.seconds(
                            ((Long) pair[1]).intValue()).toFormattedString());
            result.add(resourceWorkedHoursDTO);
        }
View Full Code Here

TOP

Related Classes of org.libreplan.ws.resources.api.ResourceWorkedHoursDTO

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.