Exemplo n.º 1
0
 public BrowseCommand(ICubeRunnerFactory runnerCreator, CubeRunnerPanelVM panelVm)
 {
     _runnerCreator = runnerCreator;
     _panelVM       = panelVm;
 }
Exemplo n.º 2
0
 public CubeRunnerPanelVM(ICubeRunnerFactory cubeRunnerCreator)
 {
     RunnerBars    = new ObservableCollection <RunnerBarVM>();
     BrowseCommand = new BrowseCommand(cubeRunnerCreator, this);
     ClearCommand  = new ClearCommand(this);
 }