Example #1
0
 public void RecievedContents(Jewels safeContents)
 {
     returnedContents = safeContents;
     Console.WriteLine("Thankyou for returning my jewellery "+ safeContents.Sparkle());
 }
Example #2
0
 public new void ReturnContents(Jewels safeContents, Owner owner)
 {
     stolenJewels = safeContents;
     Console.WriteLine("Im stealing the contents! " +stolenJewels.Sparkle());
 }