AdmMono/src/com/rjconsultores/ventaboletos/service/RutaEmpresaService.java

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