12 lines
302 B
Java
12 lines
302 B
Java
|
|
package com.rjconsultores.ventaboletos.dao;
|
|
|
|
import java.util.List;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.EmpresaConfigLayout;
|
|
|
|
public interface EmpresaConfigLayoutDAO extends GenericDAO<EmpresaConfigLayout, Integer> {
|
|
|
|
public List<EmpresaConfigLayout> buscarByEmpresa(Integer empresaId);
|
|
}
|