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

15 lines
297 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.Nodo;
/**
*
* @author Administrador
*/
public interface NodoDAO extends GenericDAO<Nodo, Integer> {
}