package com.rjconsultores.ventaboletos.service; import java.util.List; import javax.mail.SendFailedException; import com.rjconsultores.ventaboletos.entidad.LogHistoricoContingencia; import com.rjconsultores.ventaboletos.exception.BusinessException; public interface ContingenciaService { public List buscarHistorico(Integer empresaID, Integer estadoID); public LogHistoricoContingencia salvarHistoricoContingencia(LogHistoricoContingencia historicoCont) throws SendFailedException, BusinessException; }