Beispiel #1
0
 public void Remove(Kategori obj)
 {
     this.List.Remove(obj);
 }
Beispiel #2
0
 public int IndexOf(Kategori obj)
 {
     return(this.List.IndexOf(obj));
 }
Beispiel #3
0
 public void Insert(int index, Kategori obj)
 {
     this.List.Insert(index, obj);
 }
Beispiel #4
0
 public bool Contains(Kategori obj)
 {
     return(this.List.Contains(obj));
 }
Beispiel #5
0
 public int Add(Kategori obj)
 {
     return(this.List.Add(obj));
 }