private void AddTransaction()
 {
     budgetEntry = budgetEntry.AddTransaction(CreateTestTransaction());
 }
 private void CloseEntry()
 {
     budgetEntry = budgetEntry.Close();
 }
 public void SetUp()
 {
     name = "TestEntry";
     budget = TEST_VALUE * factor;
     budgetEntry = new BudgetCategory(name, budget);
 }