eduardo.dicarde 2016-09-22 20:10:14 +00:00
parent ae344135ef
commit f67d5223a4
2 changed files with 1 additions and 2 deletions

View File

@ -6,7 +6,6 @@ import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Repository;
import com.rjconsultores.ventaboletos.dao.RutaCasetaDAO;
import com.rjconsultores.ventaboletos.dao.RutaDAO;
import com.rjconsultores.ventaboletos.entidad.RutaCaseta;
@Repository("rutaCasetaDAO")

View File

@ -33,7 +33,7 @@ public class RutaCasetaServiceImpl implements RutaCasetaService{
}
@Transactional(rollbackFor = BusinessException.class)
public void deletarRutaCasetasFromRutaSecuenciaId(Integer id) {
public void deletarRutaCasetasFromRutaSecuenciaId(Integer id) throws BusinessException {
rutaCasetaDAO.deletarRutaCasetasFromRutaSecuenciaId(id);
}
}