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 { public List buscaAbastoBoletoPorPuntoVenta(PuntoVenta puntoVenta); }