public TransactionsTab()
 {
     InitializeComponent();
     m_category_selector.DataContext = (App.Current as App).CategoryPresenter;
     Presenter=(App.Current as App).TransactionPresenter;
     DataContext = Presenter;
 }
 public SelectCategoryCommand(TransactionsPresenter i_presenter)
 {
     Presenter = i_presenter;
 }