// Constructor
        public CircuitProbeSet(CircuitProject store)
        {
            ITableSnapshot table = store.Table("CircuitProbe");

            if (table != null)
            {
                Debug.Assert(store.IsFrozen, "The store should be frozen");
                this.Table = (TableSnapshot <CircuitProbeData>)table;
            }
            else
            {
                Debug.Assert(!store.IsFrozen, "In order to create table, the store should not be frozen");
                this.Table = CircuitProbeData.CreateTable(store);
            }
            this.InitializeCircuitProbeSet();
        }