Ejemplo n.º 1
0
 public TriggerGroup(string solutionDirectory)
 {
     AddTriggerCommand        = new AddFolderPathCommand(path => Triggers.Add(path), solutionDirectory);
     RemoveTriggerCommand     = new RemoveAtIndexCommand(Triggers);
     AddEntitasCfgCommand     = new AddFolderPathCommand(path => EntitasCfgPath = path, solutionDirectory, false);
     AddEntitasUserCfgCommand = new AddFolderPathCommand(path => EntitasUserCfgPath = path, solutionDirectory, false);
     Triggers = new ObservableCollection <string>();
 }
Ejemplo n.º 2
0
 public GeneratorData(string solutionDirectory)
 {
     AddFolderPathCommand = new AddFolderPathCommand(path => GeneratorPath = path, solutionDirectory);
 }