Exemple #1
0
        public void insertarFiador(string cliente_cedula, string cedula, string nombre, string telefono, string celular, string direccion, string letra_cambio)
        {
            IFiadoresSQL fiadoresSQL = this.ObtenerInstancia();

            fiadoresSQL.insertarFiador(cliente_cedula, cedula, nombre, telefono, celular, direccion, letra_cambio);
            if (fiadoresSQL.IsError)
            {
                this.IsError          = fiadoresSQL.IsError;
                this.ErrorDescripcion = fiadoresSQL.ErrorDescripcion;
                this.ErrorCode        = fiadoresSQL.ErrorCode;
            }
        }