コード例 #1
0
        public DataSet devolverPrestamoActivoSocio(int idSocio)
        {
            pPrestamo tmpPrestamo    = new pPrestamo();
            DataSet   prestamoActivo = tmpPrestamo.devolverPrestamoActivoSocio(idSocio);

            return(prestamoActivo);
        }
コード例 #2
0
        public void anularPrestamo(int nroPrestamo)
        {
            pPrestamo tmpPrestamo = new pPrestamo();

            tmpPrestamo.anularPrestamo(nroPrestamo);
        }
コード例 #3
0
        public int Guardar()
        {
            pPrestamo tmpPrestamo = new pPrestamo();

            return(tmpPrestamo.GuardarPrestamo(Socio.Socio_id, Socio_nro, Fecha, Hora, Monteopedido, Tasa, Cantidadcuotas, Importecuota, NumeroPrestamoAnt, MontopedidoAnt, AmortizacionVencer, InteresesVencer, CuotasPactadas, CuotasPagadas, CuotaAnt, Tasaanterior, Anulado));
        }