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