EstadoEstudioDAO.java 319 Bytes
Newer Older
Luis Gangas committed
1 2 3 4 5 6 7 8 9 10 11 12
package trismegistoplanilla.dao;

import org.json.JSONObject;
import trismegistoplanilla.beans.EstadoEstudioBean;

public interface EstadoEstudioDAO {

    public JSONObject validarExistenciaEstadoEstudio(EstadoEstudioBean estadoEstudio);

    public JSONObject listarEstadoEstudio(EstadoEstudioBean estadoEstudio);

}