Exemplo n.º 1
0
 public override void ReturnContents(Jewels safeContents, Owner owner)
 {
     stolenJewels = safeContents;
     Console.WriteLine("I'm stealing the contents! " + stolenJewels.Sparkle());
 }
Exemplo n.º 2
0
 public void ReceiveContents(Jewels safeContents)
 {
     returnedContents = safeContents;
     Console.WriteLine("Thank you for returning my jewels! " + safeContents.Sparkle());
 }