Package com.supinfo.youfood.dto

Examples of com.supinfo.youfood.dto.TableAddDishCategory


        } else {
            ArrayList<TableAddDishCategory> toReturn = new ArrayList<TableAddDishCategory>();
            ArrayList<YFDishCategory> dishCategories = (ArrayList<YFDishCategory>) this.dishCategoryService.getCurrentDishCategories();

            for(YFDishCategory dishCategory : dishCategories) {
                TableAddDishCategory dc = new TableAddDishCategory();
                dc.setId(dishCategory.getId());
                dc.setName(dishCategory.getName());

                toReturn.add(dc);
            }

            req.setAttribute("dishCategories", toReturn);
View Full Code Here

TOP

Related Classes of com.supinfo.youfood.dto.TableAddDishCategory

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.