diff --git a/src/com/rjconsultores/ventaboletos/dao/SeguroKmDAO.java b/src/com/rjconsultores/ventaboletos/dao/SeguroKmDAO.java new file mode 100644 index 000000000..c8f68cbb1 --- /dev/null +++ b/src/com/rjconsultores/ventaboletos/dao/SeguroKmDAO.java @@ -0,0 +1,14 @@ +package com.rjconsultores.ventaboletos.dao; + +import com.rjconsultores.ventaboletos.service.SeguroService; + + +public interface SeguroKmDAO { + /** + * See {@link SeguroService#atualizarSeguroPorKm(Integer, Integer, Integer)} + * @param rutaId + * @param orgaoId + * @param usuarioId + */ + public void atualizarSeguroPorKm(Integer rutaId,Integer orgaoId,Integer usuarioId) ; +} diff --git a/src/com/rjconsultores/ventaboletos/dao/TaxaEmbarqueDAO.java b/src/com/rjconsultores/ventaboletos/dao/TaxaEmbarqueDAO.java index 6d08dfb88..b187f3708 100644 --- a/src/com/rjconsultores/ventaboletos/dao/TaxaEmbarqueDAO.java +++ b/src/com/rjconsultores/ventaboletos/dao/TaxaEmbarqueDAO.java @@ -3,9 +3,10 @@ package com.rjconsultores.ventaboletos.dao; public interface TaxaEmbarqueDAO { /** - * See {@link TaxaEmbarqueServic#atualizarTaxaEmbarque(Integer, Integer)} + * See {@link TaxaEmbarqueServic#atualizarTaxaEmbarque(Integer, Integer, Integer)} * @param rutaId * @param usuarioId TODO + * @param orgaoConcedenteId TODO */ - public void atualizarTaxaEmbarque(Integer rutaId, Integer usuarioId); + public void atualizarTaxaEmbarque(Integer rutaId, Integer usuarioId, Integer orgaoConcedenteId); } diff --git a/src/com/rjconsultores/ventaboletos/dao/hibernate/TaxaEmbarqueHibernateDAO.java b/src/com/rjconsultores/ventaboletos/dao/hibernate/TaxaEmbarqueHibernateDAO.java index b024bc437..d1b34ad93 100644 --- a/src/com/rjconsultores/ventaboletos/dao/hibernate/TaxaEmbarqueHibernateDAO.java +++ b/src/com/rjconsultores/ventaboletos/dao/hibernate/TaxaEmbarqueHibernateDAO.java @@ -21,17 +21,17 @@ public class TaxaEmbarqueHibernateDAO extends GenericHibernateDAO