Example #1
0
 @Transactional(readOnly = false)
 public void update(T01I001 e) {
   continentDao.update(e);
 }
Example #2
0
 public T01I001 get(Integer id) {
   return continentDao.get(id);
 }
Example #3
0
 public List<T01I001> get(T01I001 e) {
   return continentDao.get(e);
 }
Example #4
0
 public List<T01I001> get() {
   return continentDao.get();
 }