public DataSet devolverPrestamoActivoSocio(int idSocio) { pPrestamo tmpPrestamo = new pPrestamo(); DataSet prestamoActivo = tmpPrestamo.devolverPrestamoActivoSocio(idSocio); return(prestamoActivo); }
public void anularPrestamo(int nroPrestamo) { pPrestamo tmpPrestamo = new pPrestamo(); tmpPrestamo.anularPrestamo(nroPrestamo); }
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)); }