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); }