15 lines
518 B
Java
15 lines
518 B
Java
package com.rjconsultores.ventaboletos.service;
|
|
|
|
import java.util.Date;
|
|
|
|
import com.rjconsultores.ventaboletos.exception.ComissaoException;
|
|
import com.rjconsultores.ventaboletos.vo.comissao.RegistroCalculo;
|
|
|
|
public interface CalculoComissaoService {
|
|
|
|
public RegistroCalculo relatorioCalculoComissao(Integer puntoVentaId, Integer empresaId, Date periodo) throws ComissaoException;
|
|
|
|
public void registrarCalculoComissao(Integer puntoVentaId, Integer empresaId, Date periodo) throws ComissaoException;
|
|
|
|
}
|