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