/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rjconsultores.ventaboletos.dao; import java.util.List; import com.rjconsultores.ventaboletos.entidad.EsquemaAgrupacion; import com.rjconsultores.ventaboletos.entidad.EsquemaCorrida; /** * * @author RJ Consultores */ public interface EsquemaAgrupacionDAO extends GenericDAO { public List buscar(EsquemaAgrupacion esquemaAgrupacion); public EsquemaAgrupacion obtenerByEsquemaAgrupacion(Integer numAgrupacion); public boolean buscarNumAgrupacion(Integer numAgrupacion); }