/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package mx.edu.um.mateo.inscripciones.dao; import mx.edu.um.mateo.inscripciones.model.AlumnoAcademico; /** * * @author zorch */ public interface AlumnoAcademicoDao { public AlumnoAcademico obtiene(Long id); }