44 lines
1.2 KiB
Java
44 lines
1.2 KiB
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.Parada;
|
|
import com.rjconsultores.ventaboletos.entidad.PuntoVenta;
|
|
import com.rjconsultores.ventaboletos.entidad.Usuario;
|
|
|
|
/**
|
|
*
|
|
* @author Administrador
|
|
*/
|
|
public interface PuntoVentaService {
|
|
|
|
public List<PuntoVenta> obtenerTodos();
|
|
|
|
public PuntoVenta obtenerID(Integer id);
|
|
|
|
public PuntoVenta suscribir(PuntoVenta entidad);
|
|
|
|
public PuntoVenta actualizacion(PuntoVenta entidad);
|
|
|
|
public void borrar(PuntoVenta entidad);
|
|
|
|
public List<PuntoVenta> buscaLike(String strEstacion);
|
|
|
|
public List<PuntoVenta> buscar(String nomPuntoVenta, String numPuntoVenta);
|
|
|
|
public List<PuntoVenta> buscaPuntoVenta(String numPuntoVenta);
|
|
|
|
public List<PuntoVenta> buscaPuntoVentaParada(Parada paradaId);
|
|
|
|
public List<PuntoVenta> buscarPuntoVentaSubordinados(PuntoVenta puntoVenta);
|
|
|
|
public List<PuntoVenta> buscarPuntosVentaMovimentacionBilhetes(List<Empresa> empresas);
|
|
|
|
public List<PuntoVenta> buscarPuntosVentaPorUsuario(Usuario usuario);
|
|
}
|