/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rjconsultores.ventaboletos.service; import java.io.InputStream; import java.util.Map; import org.zkoss.util.media.AMedia; import com.rjconsultores.ventaboletos.exception.BusinessException; /** * * @author Administrador */ public interface GenericServiceInforme { public AMedia gerarInforme(InputStream informe, Map parameters) throws BusinessException; }