public void Remove(Kategori obj) { this.List.Remove(obj); }
public int IndexOf(Kategori obj) { return(this.List.IndexOf(obj)); }
public void Insert(int index, Kategori obj) { this.List.Insert(index, obj); }
public bool Contains(Kategori obj) { return(this.List.Contains(obj)); }
public int Add(Kategori obj) { return(this.List.Add(obj)); }