/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rjconsultores.ventaboletos.service; import com.rjconsultores.ventaboletos.entidad.Secretaria; import java.util.List; /** * * @author Administrador */ public interface SecretariaService extends GenericService { public List buscar(String descsecretaria, String cvesecretaria); public List buscar(String descsecretaria); }