Package main.entity

Examples of main.entity.eDish


  }
 
  @SuppressWarnings("unchecked")
  public eDish Read(int id
  {
    eDish dish = new eDish();
   
    List<eDish> list = sessionFactory.getCurrentSession().createQuery("from eDish where id = "+id).list();
   
    if (list.isEmpty())
    {
View Full Code Here

TOP

Related Classes of main.entity.eDish

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.