/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rjconsultores.ventaboletos.dao; import com.rjconsultores.ventaboletos.entidad.ClaseServicio; import com.rjconsultores.ventaboletos.entidad.Empresa; import com.rjconsultores.ventaboletos.entidad.Parada; import com.rjconsultores.ventaboletos.entidad.PricingEspecifico; import java.util.Date; import java.util.List; /** * * @author Rafius */ public interface PricingEspecificoDAO extends GenericDAO { public List buscarPorNome(PricingEspecifico pricingEspecifico); public List buscarPorNome(String nome); public List buscar(List empresas, List tipoClasses, List origens, List destinos, Date vigenciaInicial, Date vigenciaFinal); }