/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rjconsultores.ventaboletos.dao; import com.rjconsultores.ventaboletos.entidad.DiagramaAutobus; import java.util.List; /** * * @author Administrador */ public interface DiagramaAutobusDAO extends GenericDAO { public List buscar(String descDiagrama, Short maxparados, Short cantasientos); public List buscar(String descDiagrama); }