public void Remove(SupportedStatement item)
 {
     InnerList.Remove(item);
 }
 public int IndexOf(SupportedStatement item)
 {
     return(InnerList.IndexOf(item));
 }
 public void Add(SupportedStatement item)
 {
     InnerList.Add(item);
 }