Beispiel #1
0
        public override bool Equals(object obj)
        {
            if (obj == null || GetType() != obj.GetType())
            {
                return(false);
            }

            ItemRow that = (ItemRow)obj;

            return(Object.Equals(this._item, that._item));
        }
 public void DeleteItemFromRows(ItemRow i)
 {
     _document.DeleteItem(i.Item);
 }