예제 #1
0
 public void AddPreviousState(BankAccount account)
 {
     Balance = account.Balance;
 }
예제 #2
0
 public BankMemento(BankAccount account)
 {
     this.OwnerName = account.OwnerName; this.OwnerAddress = account.OwnerAddress; this.Balance = account.Balance;
 }