Ejemplo n.º 1
0
 @Transactional(readOnly = true)
 public List<NewsLayout> findAllLayoutWithDeviceIdAndState(Long deviceId, Boolean state) {
   return newsLayoutDao.findAllLayoutWithDeviceIdAndState(deviceId, state);
 }
Ejemplo n.º 2
0
 public void deleteNewsLayout(Long id) {
   newsLayoutDao.delete(id);
 }