Package com.supinfo.youfood.entity

Examples of com.supinfo.youfood.entity.YFMenu


        return em.find(YFMenu.class, id);
    }

    @Override
    public YFMenu createMenu(YFMenu menu) {
        YFMenu tmp = menu;
        em.persist(tmp);
        return tmp;
    }
View Full Code Here

TOP

Related Classes of com.supinfo.youfood.entity.YFMenu

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.