1 package ecar.historico;
2
3 import ecar.exception.ECARException;
4 /**
5 * Interface a ser implementada por classes do tipo Histórico.
6 * @author carlos
7 * @since 19/07/2007
8 */
9 public interface IHistorico {
10
11 public void gerarMaster(Integer acao) throws ECARException;
12 public void gerarHistorico() throws ECARException;
13
14 }