21 lines
404 B
Java
21 lines
404 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.PtovtaDiversos;
|
|
|
|
|
|
|
|
|
|
|
|
public interface PtovtaDiversosService extends GenericService<PtovtaDiversos, Integer> {
|
|
|
|
public List<PtovtaDiversos> buscar(int id);
|
|
|
|
}
|
|
|