Subversion Repositories Integrator Subversion

Rev

Rev 267 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
261 espaco 1
package br.com.ec.domain.service;
2
 
3
import br.com.ec.core.generic.GenericService;
4
import br.com.ec.domain.dto.consulta.ParametrosConsultaVendasDTO;
5
import br.com.ec.domain.dto.grafico.GraficoBarraDTO;
6
import br.com.ec.domain.dto.grafico.GraficoDTO;
7
 
8
public interface GraficoService extends GenericService<GraficoDTO> {
9
 
10
        GraficoBarraDTO gerarGraficoVendas(ParametrosConsultaVendasDTO parametrosConsulta);
11
 
12
//      TempoRealDTO consultarDashboardDoDia();
13
 
14
}