AdmMono/src/com/rjconsultores/ventaboletos/service/EmpresaCertificadoConfigSer...

11 lines
463 B
Java

package com.rjconsultores.ventaboletos.service;
import com.rjconsultores.ventaboletos.entidad.Empresa;
import com.rjconsultores.ventaboletos.entidad.EmpresaCertificadoConfig;
import com.rjconsultores.ventaboletos.enums.EnumTipoCertificado;
public interface EmpresaCertificadoConfigService extends GenericService<EmpresaCertificadoConfig, Integer> {
public EmpresaCertificadoConfig buscarPorEmpresa(Empresa empresa, EnumTipoCertificado enumTipoCertificado);
}