package pe4.siso.ReporteAsistFaltasProfesores.SERVICES; import java.util.ArrayList; import pe1.siso.ReporteAsistFaltasProfesores.BEANS.Descuento; import pe2.siso.ReporteAsistFaltasProfesores.DAO.DescuentoDAO; import pe2.siso.ReporteAsistFaltasProfesores.DAO.FactoryDAO; public class DescuentoServices { FactoryDAO factory = FactoryDAO.getFactoryDAO(FactoryDAO.SQLSERVER); DescuentoDAO obj = factory.getDescuentoDAO(); public ArrayList<Descuento> listar_descuento_profesor(String dbanio, String mes, String codigo_profesor) { ArrayList<Descuento> listar_descuento_profesor = null; try { listar_descuento_profesor = obj.listar_descuento_profesor(dbanio, mes, codigo_profesor); } catch (Exception e) { e.getMessage(); } return listar_descuento_profesor; } public String listar_descuento_profesor_monto_total(String dbanio, String mes, String codigo_profesor) { String monto_total_descuento = ""; try { monto_total_descuento = obj.listar_descuento_profesor_monto_total(dbanio, mes, codigo_profesor); } catch (Exception e) { e.getMessage(); } return monto_total_descuento; } }