Subversion Repositories Integrator Subversion

Rev

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

package br.com.ec.domain.service;

import br.com.ec.core.generic.GenericService;
import br.com.ec.domain.dto.AlertasComprasDTO;
import br.com.ec.domain.dto.AlertasGeralDTO;
import br.com.ec.domain.dto.AlertasLogisticaComprasDTO;

public interface AlertasService extends GenericService<AlertasGeralDTO> {

        AlertasComprasDTO consultarAlertasComprasGeral(AlertasGeralDTO alertasGeralDTO);

        AlertasLogisticaComprasDTO consultarAlertasLogistica(Integer quantidadeDiasVendas, Integer quantidadeDiasParaAlerta, Boolean adicionarModelosFavoritosSemVendas);

}