19 lines
552 B
Java
19 lines
552 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.ReservaEspecialCliente;
|
|
|
|
public interface ReservaEspecialClienteService extends GenericService<ReservaEspecialCliente, Integer> {
|
|
|
|
public List<ReservaEspecialCliente> bucarReservaEspecialByClienteId(Long clienteId) ;
|
|
|
|
public List<ReservaEspecialCliente> bucarReservaEspecialByCorridaId(Long corridaId) ;
|
|
|
|
|
|
}
|