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

import org.json.JSONObject;

public interface ReportePersonalDAO {

  public JSONObject validarExistenciaFilas(JSONObject jsonResult);

  public JSONObject listarReportePersonal(String condicion);

}