Пример #1
0
 private void NewEntityList(List<CellEntity> entityList, CellType cellType, object cellValue, List<string> bangdingSource)
 {
     CellEntity item = new CellEntity(cellValue, cellType, bangdingSource);
     entityList.Add(item);
 }
Пример #2
0
 private void NewEntityList(List<CellEntity> entityList, CellType cellType, object cellValue)
 {
     CellEntity item = new CellEntity(cellValue, cellType);
     entityList.Add(item);
 }