From 608f36875741c4c32ff2439ffa83c88a71c7466b Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Sun, 2 Jun 2024 11:17:12 +0200 Subject: [PATCH] IList Items; --- csharp.NUnit/GildedRose/GildedRose.cs | 56 +++++++++++++-------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/csharp.NUnit/GildedRose/GildedRose.cs b/csharp.NUnit/GildedRose/GildedRose.cs index 7ec604b6..c08bf5f8 100644 --- a/csharp.NUnit/GildedRose/GildedRose.cs +++ b/csharp.NUnit/GildedRose/GildedRose.cs @@ -4,83 +4,83 @@ namespace GildedRoseKata; public class GildedRose { - private readonly IList _items; + IList Items; - public GildedRose(IList items) + public GildedRose(IList Items) { - _items = items; + this.Items = Items; } public void UpdateQuality() { - for (var i = 0; i < _items.Count; i++) + for (var i = 0; i < Items.Count; i++) { - if (_items[i].Name != "Aged Brie" && _items[i].Name != "Backstage passes to a TAFKAL80ETC concert") + if (Items[i].Name != "Aged Brie" && Items[i].Name != "Backstage passes to a TAFKAL80ETC concert") { - if (_items[i].Quality > 0) + if (Items[i].Quality > 0) { - if (_items[i].Name != "Sulfuras, Hand of Ragnaros") + if (Items[i].Name != "Sulfuras, Hand of Ragnaros") { - _items[i].Quality = _items[i].Quality - 1; + Items[i].Quality = Items[i].Quality - 1; } } } else { - if (_items[i].Quality < 50) + if (Items[i].Quality < 50) { - _items[i].Quality = _items[i].Quality + 1; + Items[i].Quality = Items[i].Quality + 1; - if (_items[i].Name == "Backstage passes to a TAFKAL80ETC concert") + if (Items[i].Name == "Backstage passes to a TAFKAL80ETC concert") { - if (_items[i].SellIn < 11) + if (Items[i].SellIn < 11) { - if (_items[i].Quality < 50) + if (Items[i].Quality < 50) { - _items[i].Quality = _items[i].Quality + 1; + Items[i].Quality = Items[i].Quality + 1; } } - if (_items[i].SellIn < 6) + if (Items[i].SellIn < 6) { - if (_items[i].Quality < 50) + if (Items[i].Quality < 50) { - _items[i].Quality = _items[i].Quality + 1; + Items[i].Quality = Items[i].Quality + 1; } } } } } - if (_items[i].Name != "Sulfuras, Hand of Ragnaros") + if (Items[i].Name != "Sulfuras, Hand of Ragnaros") { - _items[i].SellIn = _items[i].SellIn - 1; + Items[i].SellIn = Items[i].SellIn - 1; } - if (_items[i].SellIn < 0) + if (Items[i].SellIn < 0) { - if (_items[i].Name != "Aged Brie") + if (Items[i].Name != "Aged Brie") { - if (_items[i].Name != "Backstage passes to a TAFKAL80ETC concert") + if (Items[i].Name != "Backstage passes to a TAFKAL80ETC concert") { - if (_items[i].Quality > 0) + if (Items[i].Quality > 0) { - if (_items[i].Name != "Sulfuras, Hand of Ragnaros") + if (Items[i].Name != "Sulfuras, Hand of Ragnaros") { - _items[i].Quality = _items[i].Quality - 1; + Items[i].Quality = Items[i].Quality - 1; } } } else { - _items[i].Quality = _items[i].Quality - _items[i].Quality; + Items[i].Quality = Items[i].Quality - Items[i].Quality; } } else { - if (_items[i].Quality < 50) + if (Items[i].Quality < 50) { - _items[i].Quality = _items[i].Quality + 1; + Items[i].Quality = Items[i].Quality + 1; } } }