main
1using momoney.presentation.presenters;
2using MoMoney.Presentation.Winforms.Resources;
3
4namespace MoMoney.Presentation.Model.Navigation
5{
6 public class ViewAllBillsBranch : IBranchVisitor
7 {
8 private readonly IRunThe<IViewAllBillsPresenter> command;
9
10 public ViewAllBillsBranch(IRunThe<IViewAllBillsPresenter> command)
11 {
12 this.command = command;
13 }
14
15 public void visit(ITreeBranch item_to_visit)
16 {
17 item_to_visit.add_child("View All Bills", ApplicationIcons.AddIncome, command);
18 }
19 }
20}