AdmMono/src/com/rjconsultores/ventaboletos/service/PtovtaAntecipacomissaoServi...

19 lines
432 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.PtovtaAntecipacomissao;
public interface PtovtaAntecipacomissaoService extends GenericService<PtovtaAntecipacomissao, Integer> {
public List<PtovtaAntecipacomissao> buscar(int id);
}