Subversion Repositories Integrator Subversion

Rev

Rev 685 | Rev 689 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 685 Rev 686
Line 10... Line 10...
10
10
11
public interface CashbackService extends GenericService<Cashback> {
11
public interface CashbackService extends GenericService<Cashback> {
12
12
13
        List<CashbackDTO> consultarCashbackCliente(Long sequencialCliente);
13
        List<CashbackDTO> consultarCashbackCliente(Long sequencialCliente);
14
       
14
       
15
        Double consultarSaldoCliente(Long sequencialCliente, String tipoCashback);
-
 
-
 
15
        Double consultarSaldoCliente(Long sequencialCliente);
16
16
17
        void gerarCashback(ParametrosVendaDTO parametrosVendaDTO, Venda venda);
17
        void gerarCashback(ParametrosVendaDTO parametrosVendaDTO, Venda venda);
18
       
18
       
19
        void utilizarCashback(CashbackDTO cashbackDTO);
19
        void utilizarCashback(CashbackDTO cashbackDTO);
-
 
20
-
 
21
        void utilizarCashback(Venda venda, Double valor);
20
       
22
       
21
}
23
}