public virtual void SortByName()
 {
     for (int i = base.Count - 1; i > 0; i--)
     {
         for (int j = 0; j < i; j++)
         {
             if (this[j].checklist_type.CompareTo(this[j + 1].checklist_type) > 0)
             {
                 MasterCheckListRelation relation = this[j];
                 this[j]     = this[j + 1];
                 this[j + 1] = relation;
             }
         }
     }
 }
 public int Add(MasterCheckListRelation value)
 {
     return(base.List.Add(value));
 }
 public void Insert(int index, MasterCheckListRelation value)
 {
     base.List.Insert(index, value);
 }
 public void Remove(MasterCheckListRelation value)
 {
     base.List.Remove(value);
 }
 public int IndexOf(MasterCheckListRelation value)
 {
     return(base.List.IndexOf(value));
 }