AdmMono/src/com/rjconsultores/ventaboletos/dao/EmpresaConfigLayoutDAO.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);
}