22 lines
550 B
Java
22 lines
550 B
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package com.rjconsultores.ventaboletos.service;
|
|
|
|
import java.util.List;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.HistoricoFormaPagoPuntoVenta;
|
|
import com.rjconsultores.ventaboletos.entidad.PuntoVenta;
|
|
|
|
/**
|
|
*
|
|
* @author Wallace
|
|
*/
|
|
public interface HistoricoFormaPagoPuntoVentaService extends GenericService<HistoricoFormaPagoPuntoVenta, Integer> {
|
|
|
|
List<HistoricoFormaPagoPuntoVenta> obtenerTodosPorPuntoVenta(PuntoVenta puntoVenta);
|
|
|
|
|
|
}
|