AdmMono/src/com/rjconsultores/ventaboletos/dao/TramoKmServicioDAO.java

18 lines
430 B
Java

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.rjconsultores.ventaboletos.dao;
import com.rjconsultores.ventaboletos.entidad.TramoKmServicio;
import java.util.List;
/**
*
* @author Desenvolvimento
*/
public interface TramoKmServicioDAO extends GenericDAO<TramoKmServicio, Integer> {
public List<TramoKmServicio> buscar(TramoKmServicio tramoKmServicio);
}