20 lines
428 B
Java
20 lines
428 B
Java
package com.rjconsultores.ventaboletos.dao;
|
|
|
|
import java.util.List;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.Cliente;
|
|
import com.rjconsultores.ventaboletos.entidad.ClienteDireccion;
|
|
|
|
|
|
|
|
|
|
|
|
public interface ClienteDireccionDAO extends GenericDAO<ClienteDireccion, Integer> {
|
|
|
|
public List<ClienteDireccion> buscar(Integer clienteId);
|
|
|
|
public List<ClienteDireccion> buscar(Cliente cliente);
|
|
|
|
|
|
}
|