16 lines
553 B
Java
16 lines
553 B
Java
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<LogHistoricoContingencia> buscarHistorico(Integer empresaID, Integer estadoID);
|
|
|
|
public LogHistoricoContingencia salvarHistoricoContingencia(LogHistoricoContingencia historicoCont) throws SendFailedException, BusinessException;
|
|
}
|