public ProcessingViewModel()
        {
            WorkSpace = new AllConfigsViewModel();
            SingleConfigViewModel scvm = new SingleConfigViewModel(null);

            WorkSpace.Configs.Add(scvm);
        }
 public ProcessingViewModel(List <ISessionColumnCollection> collections)
 {
     WorkSpace = new AllConfigsViewModel(collections);
 }