In the first code block on the page:
Code:
_items[ItemIndex].Quantity++;
...should probably be:
Code:
_items[ItemIndex].Quantity += Quantity;
In the second and third code blocks, the spelling of the getter variable is incorrect; it should be _productName, not _Productname.