override public void ReturnContents(Jewels safeContents, Owner owner)
 {
     stolenJewels = safeContents;
     Console.WriteLine($"I'm strealing the contents! {stolenJewels.Sparkle()}");
 }
Example #2
0
 public void ReceiveContents(Jewels safeContents)
 {
     returnedContents = safeContents;
     Console.WriteLine($"Thank you for returning my Jewels! {safeContents.Sparkle()}");
 }