Exemplo n.º 1
0
        public BudgetPagePresenter(BudgetPageView view, ITransactionsPageViewModel viewModel, ICategoriesGridPresenter categoriesGridPresenter) : base(view, viewModel)
        {
            this.view      = view;
            this.viewModel = viewModel;
            this.categoriesGridPresenter = categoriesGridPresenter;

            BindEvents();
        }
Exemplo n.º 2
0
        public TransactionsPagePresenter(TransactionsPageView view,
                                         ITransactionsPageViewModel viewModel,
                                         IAccountsPanePresenter accountsPanePresenter,
                                         ITransactionsGridPresenter transactionsGridPresenter) : base(view,
                                                                                                      viewModel)
        {
            this.view                      = view;
            this.viewModel                 = viewModel;
            this.accountsPanePresenter     = accountsPanePresenter;
            this.transactionsGridPresenter = transactionsGridPresenter;

            BindEvents();
        }