示例#1
0
 public Pairer(Func <string> Maker, Database db, pairGen Pair, string Key, object Value)
     : base(Maker, db)
 {
     this.Key   = Key;
     this.Value = Value;
     _Pair      = Pair;
 }
            public Updater(string Table, pairGen Pair)

            {
                this.Table = Table;
                this.Pair  = Pair;
            }
示例#3
0
 public Inserter(pairGen Pair, keyGen Keys, string Table)
 {
     this.Pair  = Pair;
     this.Keys  = Keys;
     this.Table = Table;
 }