20 lines
492 B
Java
20 lines
492 B
Java
/*
|
|
* 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<Secretaria, Integer> {
|
|
|
|
public List<Secretaria> buscar(String descsecretaria, String cvesecretaria);
|
|
|
|
public List<Secretaria> buscar(String descsecretaria);
|
|
}
|