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

15 lines
300 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.Sistema;
/**
*
* @author rodrigo
*/
public interface SistemaDAO extends GenericDAO<Sistema, Integer> {
}