6d3ec4d5196428326f6791e0f06c34da3acc671e.svn-base 1.2 KB
Newer Older
Felipe Escala Torres committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
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;
    }
}