public void Insert(Int32 index, EmployeeOtherControlsSubscriptionsViewData value) { if (!immutable) { List.Insert(index, value); } else { throw new System.Data.ReadOnlyException(); } }
public void Add(EmployeeOtherControlsSubscriptionsViewData value) { if (!immutable) { List.Add(value); } else { throw new System.Data.ReadOnlyException(); } }
public Int32 IndexOf(EmployeeOtherControlsSubscriptionsViewData value) { return(List.IndexOf(value)); }
public Boolean Contains(EmployeeOtherControlsSubscriptionsViewData value) { return(List.Contains(value)); }