Exemplo n.º 1
0
 public IEnumerable<GitBranchView> GetCombinedBranchesView()
 {
     var fullList = new GitBranchViewList();
     foreach (var gitProject in Items)
     {
         fullList.AddRange(gitProject.GetBranchViews());
     }
     return fullList.Collapse();
 }