Пример #1
0
        public ForeignKeyCheckerUB1(UnaryTableUpdater source, BinaryTableUpdater target)
        {
            Debug.Assert(source.store == target.store1);

            this.source = source;
            this.target = target;
        }
Пример #2
0
        public ForeignKeyCheckerBU1(BinaryTableUpdater source, UnaryTableUpdater target)
        {
            Debug.Assert(source.store1 == target.store);

            this.source = source;
            this.target = target;
        }
Пример #3
0
 public ForeignKeyCheckerFCU(FloatColumnUpdater source, UnaryTableUpdater target)
 {
     Debug.Assert(source.store == target.store);
     this.source = source;
     this.target = target;
 }
Пример #4
0
 public ForeignKeyCheckerUST12(UnaryTableUpdater source, Sym12TernaryTableUpdater target)
 {
     Debug.Assert(source.store == target.store12);
     this.source = source;
     this.target = target;
 }
Пример #5
0
 public ForeignKeyCheckerST3U(Sym12TernaryTableUpdater source, UnaryTableUpdater target)
 {
     Debug.Assert(source.store3 == target.store);
     this.source = source;
     this.target = target;
 }
Пример #6
0
 public ForeignKeyCheckerBU2(BinaryTableUpdater source, UnaryTableUpdater target)
 {
     this.source = source;
     this.target = target;
 }