11 lines
313 B
Java
11 lines
313 B
Java
package com.rjconsultores.ventaboletos.service;
|
|
|
|
import java.util.List;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.PrecoApanhe;
|
|
|
|
public interface PrecoApanheService extends GenericService<PrecoApanhe, Integer> {
|
|
|
|
public List<PrecoApanhe> buscar(String deschotel, String desccolonia, String nombciudad);
|
|
}
|