public bool Contains(PubHist value)
 {
     return(List.Contains(value));
 }
 public void Remove(PubHist value)
 {
     List.Remove(value);
 }
 public int IndexOf(PubHist value)
 {
     return(List.IndexOf(value));
 }
 public void Insert(int index, PubHist value)
 {
     List.Insert(index, value);
 }
 public int Add(PubHist value)
 {
     return(List.Add(value));
 }