Subversion Repositories Integrator Subversion

Rev

Rev 628 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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