Subversion Repositories Integrator Subversion

Rev

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

Rev Author Line No. Line
114 espaco 1
package br.com.ec.infrastructure.repository;
2
 
3
import java.util.Date;
4
 
5
import br.com.ec.domain.model.Categoria;
6
import br.com.ec.domain.model.Orcamento;
7
import br.edu.cesmac.core.generic.GenericRepository;
8
 
9
public interface OrcamentoRepository extends GenericRepository<Orcamento> {
10
 
11
        Orcamento consultarOrcamento(Date dataInicial, Date dataFinal, Categoria categoria, String tipoCategoria);
12
 
13
}