6263646566676869707172
} @SuppressWarnings("unchecked") public eDishType Read(int id) { eDishType type = new eDishType(); List<eDishType> list = sessionFactory.getCurrentSession().createQuery("from eDishType where id = "+id).list(); if (list.isEmpty()) {
133134135136137138139140
@Transactional public void addDishType(mDishType type) { if (type!=null) { daoType.Create( new eDishType( type ) ); } }