12 lines
382 B
Java
12 lines
382 B
Java
package com.rjconsultores.ventaboletos.service;
|
|
|
|
import java.util.List;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.Secretaria;
|
|
import com.rjconsultores.ventaboletos.entidad.SecretariaEmpresa;
|
|
|
|
public interface SecretariaEmpresaService extends GenericService<SecretariaEmpresa, Integer> {
|
|
|
|
public List<SecretariaEmpresa> buscarPorSecretaria(Secretaria secretaria);
|
|
}
|