mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-16 15:01:28 +00:00
- Updated CustomMethod - Updated implementation of update quality and sellin in derived classes
21 lines
357 B
C#
21 lines
357 B
C#
using GildedRose.Abstraction;
|
|
using GildedRoseKata;
|
|
|
|
namespace GildedRose.Models
|
|
{
|
|
public class Sulfuras : Item, ICustomMethod
|
|
{
|
|
public int SellDaysGone { get; set; }
|
|
|
|
public void UpdateQuality()
|
|
{
|
|
// do thing
|
|
}
|
|
|
|
public void UpdateSellIn()
|
|
{
|
|
// do nothing
|
|
}
|
|
}
|
|
}
|