public void Insert(int index, OtherStorageInBill entity) { base.Insert(index, entity); }
public bool Contains(OtherStorageInBill entity) { return(base.Contains(entity)); }
public int IndexOf(OtherStorageInBill entity) { return(base.IndexOf(entity)); }
public bool Remove(OtherStorageInBill entity) { return(base.Remove(entity)); }
public void Add(OtherStorageInBill entity) { base.Add(entity); }
public int IndexOf(OtherStorageInBill entity) { return base.IndexOf(entity); }
public bool Contains(OtherStorageInBill entity) { return base.Contains(entity); }
public bool Remove(OtherStorageInBill entity) { return base.Remove(entity); }