DetalleLoteFichaDocenteDAO.java 543 Bytes
Newer Older
Luis Gangas committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package trismegistoplanilla.dao;

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

public interface DetalleLoteFichaDocenteDAO {

  public JSONObject listarDetalleLoteFichaDocenteDT(LoteFichaBean loteFicha);

  public JSONObject registrarSueldosPresidenciaLoteDocente(JSONObject json);

  public JSONObject listarDetalleLoteFichaAdministrativoDT(JSONObject data);
  
  public JSONObject registrarSueldosPresidenciaLoteAdministrativo(JSONObject data);
  
  public JSONObject obtenerDetalleFicha(JSONObject data);

}