public ModelConfigurationRepack(ConfigurationRepack repack)
 {
     Repack            = repack;
     SourceNames       = new ObservableCollection <ModelConfigurationString>(repack.SourceNames.Select(e => new ModelConfigurationString(e)));
     DeleteItemCommand = new DelegateCommand(DeleteString);
     AddItemCommand    = new DelegateCommand(AddString);
 }
Example #2
0
 public InformationRepack(ConfigurationRepack repack)
 {
     ConfigurationRepack = repack;
     Sources             = new List <DirectoryInfo>();
 }