public ForeignKeyCheckerBT(BinaryTableUpdater source, TernaryTableUpdater target)
        {
            Debug.Assert(source.store1 == target.store1 & source.store2 == target.store2);

            this.source = source;
            this.target = target;
        }
Beispiel #2
0
 public ForeignKeyCheckerUT3(UnaryTableUpdater source, TernaryTableUpdater target)
 {
     Debug.Assert(source.store == target.store3);
     this.source = source;
     this.target = target;
 }
 public ForeignKeyCheckerTU1(TernaryTableUpdater source, UnaryTableUpdater target)
 {
     Debug.Assert(source.store1 == target.store);
     this.source = source;
     this.target = target;
 }