Inheritance: ICellExpression
        public DataColumnMatch(string columnName, Type columnType)
        {
            Name = columnName;
            _columnType = columnType;

            CellModifications = new CellModifications();
        }
Exemple #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);
        }
 public AccessorMatch(Accessor accessor)
 {
     _accessor = accessor;
     CellModifications = new CellModifications();
 }