21 lines
527 B
Java
21 lines
527 B
Java
/*
|
|
* 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<DiagramaAutobus, Short> {
|
|
|
|
public List<DiagramaAutobus> buscar(String descDiagrama, Short maxparados,
|
|
Short cantasientos);
|
|
|
|
public List<DiagramaAutobus> buscar(String descDiagrama);
|
|
}
|