/* * 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.Ruta; import com.rjconsultores.ventaboletos.entidad.RutaEmpresa; /** * * @author Administrador */ public interface RutaEmpresaService extends GenericService { public List obtenerPorEmpresa(Empresa empresa); public List obtenerPorRuta(Ruta ruta); }