Exemplo n.º 1
0
 private void onValueSet(SimulationSelectionDTO simulationSelectionDTO, PropertyValueSetEventArgs <bool> args)
 {
     if (!AllowMultiSelect)
     {
         deselectAll(simulationSelectionDTO);
     }
 }
Exemplo n.º 2
0
 private RepositoryItem selectRepository(SimulationSelectionDTO dto)
 {
     return(_selectEditor);
 }
Exemplo n.º 3
0
 private void deselectAll(SimulationSelectionDTO simulationSelectionDTO)
 {
     _dtos.Except(new[] { simulationSelectionDTO }).Where(dto => dto.Selected).Each(dto => dto.Selected = false);
 }