Example #1
0
 public Memento(Laptop laptop)
 {
     Laptop = laptop;
 }
Example #2
0
 public void SetLaptop(Laptop laptop)
 {
     this.laptop = laptop;
 }
Example #3
0
 public void Restore(Memento memento)
 {
     laptop = memento.Laptop;
 }
Example #4
0
 public Originator(Laptop laptop)
 {
     this.laptop = laptop;
 }