public void Setup()
        {
            IAccountCreditDao stubCreditDao = new StubAccountCreditDao();
            IAccountDebitDao  stubDebitDao  = new StubAccountDebitDao();

            accountManager = new AccountManager(stubCreditDao, stubDebitDao);
        }
 public void Setup()
 {
     IAccountCreditDao stubCreditDao = new StubAccountCreditDao();
     IAccountDebitDao stubDebitDao = new StubAccountDebitDao();
     accountManager = new AccountManager(stubCreditDao, stubDebitDao);            
 }