Subversion Repositories Integrator Subversion

Rev

Rev 685 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

package br.com.ec.infrastructure.repository;

import java.util.List;

import br.com.ec.core.generic.GenericRepository;
import br.com.ec.domain.dto.CashbackDTO;
import br.com.ec.domain.model.Cashback;

public interface CashbackRepository extends GenericRepository<Cashback> {

        List<CashbackDTO> consultarCashbackCliente(Long sequencialCliente);

        Double consultarSaldoCliente(Long sequencialCliente, String tipoCashback);
       
        void excluirCashbackVenda(Long sequencialVenda);
       
}