|
package com.rjconsultores.ventaboletos.service;
|
|
|
|
import java.util.List;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.PacoteConvenio;
|
|
|
|
public interface PacoteConvenioService extends GenericService<PacoteConvenio, Long> {
|
|
|
|
public List<PacoteConvenio> buscar(String nomconvenio);
|
|
}
|