main
1using System.Windows.Forms;
2using gorilla.commons.utility;
3
4namespace MoMoney.Presentation.Model.Navigation
5{
6 public class TreeViewToRootNodeMapper : ITreeViewToRootNodeMapper
7 {
8 public ITreeBranch map_from(TreeView item)
9 {
10 return new TreeBranch(item.Nodes.Add("Where My Money At?"), new EmptyCommand());
11 }
12 }
13}