/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rjconsultores.ventaboletos.dao; import com.rjconsultores.ventaboletos.entidad.Ciudad; import com.rjconsultores.ventaboletos.entidad.Estado; import com.rjconsultores.ventaboletos.entidad.Plaza; import java.util.List; /** * * @author MCosso */ public interface CiudadDAO extends GenericDAO { public List buscar(String nombciudad, Estado estado, Plaza plaza); public List buscaLike(String strCiudad); public List buscarPorEstado(Estado estado); }