public void TakeAwayToy(Toy toy)
 {
     listOfToys.Remove(toy);
 }
 public void AddToy(Toy toy)
 {
     listOfToys.Add(toy);
 }