Exemplo n.º 1
0
 public static bool HasDependentCells(string range)
 {
     return(OrderCells.FirstOrDefault(x => FindLeftCell(x.Cell) == range).HasDependentCells);
 }
Exemplo n.º 2
0
 public static OrderCellInfo FindCell(CellsKind cell)
 {
     return(OrderCells.FirstOrDefault(x => x.Cell == cell) ?? OrderItemCells.FirstOrDefault(x => x.Cell == cell));
 }