public void Remove(Person person)
 {
     this.List.Remove(person);
 }
 public void Add(Person person)
 {
     this.List.Add(person);
 }