Example #1
0
 public void Handle(SimulationRemovedEvent eventToHandle)
 {
     if (!canHandle(eventToHandle))
     {
         return;
     }
     refreshSubPresenters();
 }
Example #2
0
 private bool canHandle(SimulationRemovedEvent eventToHandle)
 {
     return(eventToHandle.Simulation.IsAnImplementationOf <ISimulation>());
 }
 public void Handle(SimulationRemovedEvent eventToHandle)
 {
     refreshSubPresenters();
 }
 public void Handle(SimulationRemovedEvent eventToHandle)
 {
     RemoveNodeFor(eventToHandle.Simulation);
 }
 public void Handle(SimulationRemovedEvent eventToHandle)
 {
     Close(eventToHandle.Simulation);
 }