13 lines
352 B
Java
13 lines
352 B
Java
package com.rjconsultores.ventaboletos.dao;
|
|
|
|
import java.util.List;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.AbastoBoleto;
|
|
import com.rjconsultores.ventaboletos.entidad.PuntoVenta;
|
|
|
|
public interface AbastoBoletoDAO extends GenericDAO<AbastoBoleto, Integer> {
|
|
|
|
public List<AbastoBoleto> buscaAbastoBoletoPorPuntoVenta(PuntoVenta puntoVenta);
|
|
|
|
}
|