21 lines
484 B
Java
21 lines
484 B
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package com.rjconsultores.ventaboletos.service;
|
|
|
|
import java.util.List;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.Empresa;
|
|
import com.rjconsultores.ventaboletos.entidad.EmpresaImposto;
|
|
|
|
/**
|
|
*
|
|
* @author Administrador
|
|
*/
|
|
public interface EmpresaImpostoService extends GenericService<EmpresaImposto, Integer> {
|
|
|
|
public List<EmpresaImposto> buscarByEmpresa(Empresa empresa);
|
|
|
|
}
|