Пример #1
0
        public void EliminarCuota(string id)
        {
            IPrestamos_CuotasSQL prestamos_CuotasSQL = this.ObtenerInstancia();

            prestamos_CuotasSQL.EliminarCuota(id);
            if (prestamos_CuotasSQL.IsError)
            {
                this.IsError          = prestamos_CuotasSQL.IsError;
                this.ErrorDescripcion = prestamos_CuotasSQL.ErrorDescripcion;
            }
        }
Пример #2
0
        public void CancelarCuotasPrestamo(int id, DateTime fecha_pago)
        {
            IPrestamos_CuotasSQL prestamos_CuotasSQL = this.ObtenerInstancia();

            prestamos_CuotasSQL.CancelarCuotasPrestamo(id, fecha_pago);
            if (prestamos_CuotasSQL.IsError)
            {
                this.IsError          = prestamos_CuotasSQL.IsError;
                this.ErrorDescripcion = prestamos_CuotasSQL.ErrorDescripcion;
            }
        }
Пример #3
0
        public void EditarPrestamoCuotas_RecargoPrestamo(int id, double monto, double saldo)
        {
            IPrestamos_CuotasSQL prestamos_CuotasSQL = this.ObtenerInstancia();

            prestamos_CuotasSQL.EditarPrestamoCuotas_RecargoPrestamo(id, monto, saldo);
            if (prestamos_CuotasSQL.IsError)
            {
                this.IsError          = prestamos_CuotasSQL.IsError;
                this.ErrorDescripcion = prestamos_CuotasSQL.ErrorDescripcion;
            }
        }
Пример #4
0
        public void EditarPrestamoCuotas_FechaPactada(int id, DateTime fecha_pactada)
        {
            IPrestamos_CuotasSQL prestamos_CuotasSQL = this.ObtenerInstancia();

            prestamos_CuotasSQL.EditarPrestamoCuotas_FechaPactada(id, fecha_pactada);
            if (prestamos_CuotasSQL.IsError)
            {
                this.IsError          = prestamos_CuotasSQL.IsError;
                this.ErrorDescripcion = prestamos_CuotasSQL.ErrorDescripcion;
            }
        }
Пример #5
0
        public void InsertarPrestamo_Cuotas(int prestamo, int num_Cuota, DateTime fecha_pactada, double monto, double saldo)
        {
            IPrestamos_CuotasSQL prestamos_CuotasSQL = this.ObtenerInstancia();

            prestamos_CuotasSQL.InsertarPrestamo_Cuotas(prestamo, num_Cuota, fecha_pactada, monto, saldo);
            if (prestamos_CuotasSQL.IsError)
            {
                this.IsError          = prestamos_CuotasSQL.IsError;
                this.ErrorDescripcion = prestamos_CuotasSQL.ErrorDescripcion;
            }
        }
Пример #6
0
        public void EditarPrestamoCuotas(int id, DateTime fecha_pago, bool pago, string opcion)
        {
            IPrestamos_CuotasSQL prestamos_CuotasSQL = this.ObtenerInstancia();

            prestamos_CuotasSQL.EditarPrestamoCuotas(id, fecha_pago, pago, opcion);
            if (prestamos_CuotasSQL.IsError)
            {
                this.IsError          = prestamos_CuotasSQL.IsError;
                this.ErrorDescripcion = prestamos_CuotasSQL.ErrorDescripcion;
            }
        }
Пример #7
0
        public IPrestamos_CuotasSQL ObtenerInstancia()
        {
            IPrestamos_CuotasSQL result          = null;
            ContextDataBase      contextDataBase = AccesoDatos.Instance.accesoDatos.ContextDataBase;

            if (contextDataBase == ContextDataBase.PostgreSql)
            {
                result = new Prestamos_CuotasPostgres();
            }
            return(result);
        }
Пример #8
0
        public DataSet TraerPrestamoCuotas_Cliente_Prestamo(string cedula, string prestamo)
        {
            IPrestamos_CuotasSQL prestamos_CuotasSQL = this.ObtenerInstancia();
            DataSet result = prestamos_CuotasSQL.TraerPrestamoCuotas_Cliente_Prestamo(cedula, prestamo);

            if (prestamos_CuotasSQL.IsError)
            {
                this.IsError          = prestamos_CuotasSQL.IsError;
                this.ErrorDescripcion = prestamos_CuotasSQL.ErrorDescripcion;
            }
            return(result);
        }
Пример #9
0
        public DataSet TraerPrestamoCuotas_FechaPago(string fecha_desde, string fecha_hasta)
        {
            IPrestamos_CuotasSQL prestamos_CuotasSQL = this.ObtenerInstancia();
            DataSet result = prestamos_CuotasSQL.TraerPrestamoCuotas_FechaPago(fecha_desde, fecha_hasta);

            if (prestamos_CuotasSQL.IsError)
            {
                this.IsError          = prestamos_CuotasSQL.IsError;
                this.ErrorDescripcion = prestamos_CuotasSQL.ErrorDescripcion;
            }
            return(result);
        }
Пример #10
0
        public DataSet TraerSecuencia()
        {
            IPrestamos_CuotasSQL prestamos_CuotasSQL = this.ObtenerInstancia();
            DataSet result = prestamos_CuotasSQL.TraerSecuencia();

            if (prestamos_CuotasSQL.IsError)
            {
                this.IsError          = prestamos_CuotasSQL.IsError;
                this.ErrorDescripcion = prestamos_CuotasSQL.ErrorDescripcion;
            }
            return(result);
        }
Пример #11
0
        public DataSet TraerPrestamoCuotas_NoPago(string filtro)
        {
            IPrestamos_CuotasSQL prestamos_CuotasSQL = this.ObtenerInstancia();
            DataSet result = prestamos_CuotasSQL.TraerPrestamoCuotas_NoPago(filtro);

            if (prestamos_CuotasSQL.IsError)
            {
                this.IsError          = prestamos_CuotasSQL.IsError;
                this.ErrorDescripcion = prestamos_CuotasSQL.ErrorDescripcion;
            }
            return(result);
        }