Inheritance: ICellExpression
Ejemplo n.º 1
0
        public DataColumnMatch(string columnName, Type columnType)
        {
            Name = columnName;
            _columnType = columnType;

            CellModifications = new CellModifications();
        }
Ejemplo n.º 2
0
        public static Cell For(CellHandling cells, string key, Type type, CellModifications modifications, Fixture fixture)
        {
            var cell = new Cell(cells, key, type);

            modifications.Apply(cell);

            cell.readLists(cells, fixture);

            return(cell);
        }
Ejemplo n.º 3
0
 public AccessorMatch(Accessor accessor)
 {
     _accessor = accessor;
     CellModifications = new CellModifications();
 }