Package com.supinfo.youfood.dto

Examples of com.supinfo.youfood.dto.Dish


        if (type.equals("filtered")) {
            PrintWriter out = resp.getWriter();
            ArrayList<YFDish> dish = (ArrayList<YFDish>) this.dishService.getDishesBeginingBy(req.getParameter("begin"));
            ArrayList<Dish> dishes = new ArrayList<Dish>();
            for(YFDish d : dish) {
                Dish di = new Dish();
                di.setId(d.getId());
                di.setName(d.getName());
               
                dishes.add(di);
            }
           
            Gson dishGson = new Gson();
View Full Code Here

TOP

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

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.