public void Remove(Person element)
 {
     elements.Remove(element);
 }
 public void Add(Person element)
 {
     elements.Add(element);
 }