public void RemovePet(Pet p)
 {
     this._pets.Remove(p);
 }
 public void AddPet(Pet p)
 {
     this._pets.Add(p);
 }