Examples of ExpenseSheetListDTO


Examples of org.libreplan.ws.expensesheets.api.ExpenseSheetListDTO

        for (ExpenseSheet expenseSheet : expenseSheets) {
            expenseSheetDTOs.add(toDTO(expenseSheet));
        }

        return new ExpenseSheetListDTO(expenseSheetDTOs);
    }
View Full Code Here

Examples of org.libreplan.ws.expensesheets.api.ExpenseSheetListDTO

    @Override
    @GET
    @Transactional(readOnly = true)
    public ExpenseSheetListDTO getExpenseSheets() {
        return new ExpenseSheetListDTO(findAll());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.