20 lines
410 B
Java
20 lines
410 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.PtovtaInformacao;
|
|
|
|
|
|
|
|
|
|
public interface PtovtaInformacaoService extends GenericService<PtovtaInformacao, Integer> {
|
|
|
|
public List<PtovtaInformacao> buscar(int id);
|
|
|
|
}
|
|
|