Subversion Repositories Integrator Subversion

Rev

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

Rev Author Line No. Line
628 blopes 1
package br.com.ec.domain.service;
2
 
3
import br.com.ec.core.generic.GenericService;
629 blopes 4
import br.com.ec.domain.dto.NpsPosVendaDTO;
628 blopes 5
import br.com.ec.domain.model.NpsPosVenda;
6
 
629 blopes 7
public interface NpsPosVendaService extends GenericService<NpsPosVenda> {
8
 
9
        void efetivarNpsAtendimento(NpsPosVenda npsPosVendaSelecionado);
10
 
11
        NpsPosVendaDTO consultarPorPosVendaEeTipo(Long sequencial, String valor);
12
 
13
}