Ejemplo n.º 1
0
 public void AddPreviousState(BankAccount account)
 {
     Balance = account.Balance;
 }
Ejemplo n.º 2
0
 public BankMemento(BankAccount account)
 {
     this.OwnerName = account.OwnerName; this.OwnerAddress = account.OwnerAddress; this.Balance = account.Balance;
 }