package pe2.siso.ReporteAsistFaltasProfesores.DAO; import java.util.ArrayList; import pe1.siso.ReporteAsistFaltasProfesores.BEANS.Descuentos; public interface DescuentosDAO { public ArrayList<Descuentos> listar_descuentos(String dbanio, String mes, String codigo_profesor) throws Exception; public String listar_descuento_monto_total(String dbanio, String mes, String codigo_profesor) throws Exception; }