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