12 lines
306 B
Java
12 lines
306 B
Java
package com.rjconsultores.ventaboletos.dao;
|
|
|
|
import java.util.List;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.ConexionCtrl;
|
|
|
|
public interface ConexionCtrlDAO extends GenericDAO<ConexionCtrl, Long> {
|
|
|
|
public List<ConexionCtrl> buscarConexionesCtrl(Integer origenId, Integer destinoId);
|
|
|
|
}
|