//Updates an Item in the database with the given item
        public Item UpdateItem(int id, Item item)
        {
            _itemsAccessor.Update(item);
            _itemsAccessor.SaveChanges();

            return(item);
        }