Ejemplo n.º 1
0
 public TableCompositeField(TableValidator parent, int[] indices, string name)
 {
     this.Parent   = parent;
     this.Indices  = indices;
     this.Name     = name;
     this.Checkers = new List <Func <List <string>, string> >();
 }
Ejemplo n.º 2
0
 public TableField(TableValidator parent, int index, string name)
 {
     this.Parent   = parent;
     this.Index    = index;
     this.Name     = name;
     this.Checkers = new List <Func <List <string>, string> >();
 }