public TreeViewModel(ITreeService treeService)
 {
     this.treeService = treeService;
     treeService.LoadRootNodes();
 }
 public TreeViewModel()
 {
     this.treeService = CurrentContext.CurrentTreeService;
     treeService.LoadRootNodes();
 }