24 lines
691 B
Java
24 lines
691 B
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
package com.rjconsultores.ventaboletos.service;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.CancelacionCtrl;
|
|
import com.rjconsultores.ventaboletos.entidad.Marca;
|
|
import com.rjconsultores.ventaboletos.entidad.Parada;
|
|
import com.rjconsultores.ventaboletos.entidad.PuntoVenta;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
/**
|
|
*
|
|
* @author Rafius
|
|
*/
|
|
public interface CancelacionCtrlService extends GenericService<CancelacionCtrl, Integer>{
|
|
|
|
public List<CancelacionCtrl> buscar(Date tiempoprevsalida, PuntoVenta puntoVenta, Parada paradaOrigem, Parada paradaDestino, Marca marca);
|
|
|
|
}
|