Subversion Repositories Integrator Subversion

Rev

Rev 582 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
582 blopes 1
package br.com.ec.domain.service;
2
 
3
import br.com.ec.core.generic.GenericService;
588 blopes 4
import br.com.ec.domain.dto.AlertasComprasDTO;
582 blopes 5
import br.com.ec.domain.dto.AlertasGeralDTO;
588 blopes 6
import br.com.ec.domain.dto.AlertasLogisticaComprasDTO;
582 blopes 7
 
8
public interface AlertasService extends GenericService<AlertasGeralDTO> {
9
 
588 blopes 10
        AlertasComprasDTO consultarAlertasComprasGeral(AlertasGeralDTO alertasGeralDTO);
582 blopes 11
 
588 blopes 12
        AlertasLogisticaComprasDTO consultarAlertasLogistica(Integer quantidadeDiasVendas, Integer quantidadeDiasParaAlerta,
13
                        Boolean adicionarModelosFavoritosSemVendas);
14
 
582 blopes 15
}