ExpedienteDAO.java 263 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.PersonaBean;

public interface ExpedienteDAO {

  public JSONObject listarTipoExpedientes();

  public JSONObject obtenerExpedientesPorPersona(PersonaBean persona);

}