Beispiel #1
0
 public SelectCommand(int rowCount, TableControl control) : base(control)
 {
     this.rowCount = rowCount;
 }
Beispiel #2
0
 public RefreshCommand(TableControl control) : base(control)
 {
 }
Beispiel #3
0
 public InsertCommand(TableControl control, IReadOnlyDictionary <string, object> values)
     : base(control)
 {
     Values = values;
 }
Beispiel #4
0
 protected TableCommand(TableControl control)
 {
     this.control = control;
 }
Beispiel #5
0
 public CommitCommand(TableControl control) : base(control)
 {
 }