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