public void SetAccountState(AccountState accountState)
 {
     this.accountState = accountState;
 }
 public Account()
 {
     accountState = new RegularAccountState(this);
 }