Subversion Repositories Integrator Subversion

Rev

Rev 689 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
685 blopes 1
package br.com.ec.domain.service.cashback;
2
 
3
import java.util.List;
4
 
5
import br.com.ec.core.generic.GenericService;
6
import br.com.ec.domain.dto.CashbackDTO;
7
import br.com.ec.domain.dto.ParametrosVendaDTO;
8
import br.com.ec.domain.model.Cashback;
9
 
10
public interface CashbackService extends GenericService<Cashback> {
11
 
12
        List<CashbackDTO> consultarCashbackCliente(Long sequencialCliente);
710 blopes 13
 
686 blopes 14
        Double consultarSaldoCliente(Long sequencialCliente);
685 blopes 15
 
710 blopes 16
        void gerarCashback(ParametrosVendaDTO parametrosVendaDTO, Long sequencialVenda);
17
 
18
        void utilizarCashback(Long sequencialVenda, Long sequencialCliente, Double valorCashback);
19
 
689 blopes 20
        void excluirCashbackVenda(Long sequencialVenda);
710 blopes 21
 
685 blopes 22
}