protected InterestCheckingAccount GetNewInterestCheckingAccountWHighBalance()
 {
     InterestCheckingAccount newInterestCheckingAccountWHighBalance = new InterestCheckingAccount(70000);
     newInterestCheckingAccountWHighBalance.SnapShotDailyBalance();
     newInterestCheckingAccountWHighBalance.Deposit(60000);
     newInterestCheckingAccountWHighBalance.SnapShotDailyBalance();
     return newInterestCheckingAccountWHighBalance;
 }
 protected InterestCheckingAccount GetOldInterestCheckingAccountWHighBalance()
 {
     InterestCheckingAccount oldInterestCheckingAccountWHighBalance =
         new InterestCheckingAccount(70000, new DateTime(DateTime.Now.AddYears(-7).Ticks));
     oldInterestCheckingAccountWHighBalance.SnapShotDailyBalance();
     oldInterestCheckingAccountWHighBalance.Deposit(60000);
     oldInterestCheckingAccountWHighBalance.SnapShotDailyBalance();
     return oldInterestCheckingAccountWHighBalance;
 }
 protected InterestCheckingAccount GetOldInterestCheckingAccountLowBalance()
 {
     InterestCheckingAccount oldInterestCheckingAccountLowBalance =
         new InterestCheckingAccount(150, new DateTime(DateTime.Now.AddYears(-7).Ticks));
     oldInterestCheckingAccountLowBalance.SnapShotDailyBalance();
     oldInterestCheckingAccountLowBalance.Withdraw(45);
     oldInterestCheckingAccountLowBalance.SnapShotDailyBalance();
     return oldInterestCheckingAccountLowBalance;
 }
 protected InterestCheckingAccount GetNewInterestCheckingAccountWLowBalance()
 {
     InterestCheckingAccount newInterestCheckingAccountWLowBalance = new InterestCheckingAccount(100);
     newInterestCheckingAccountWLowBalance.Deposit(50);
     newInterestCheckingAccountWLowBalance.SnapShotDailyBalance();
     newInterestCheckingAccountWLowBalance.Withdraw(45);
     newInterestCheckingAccountWLowBalance.SnapShotDailyBalance();
     return newInterestCheckingAccountWLowBalance;
 }