mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 22:41:30 +00:00
- Updated CustomMethod - Updated implementation of update quality and sellin in derived classes
10 lines
221 B
C#
10 lines
221 B
C#
namespace GildedRose.Abstraction
|
|
{
|
|
public interface ICustomMethod
|
|
{
|
|
public int SellDaysGone { get; set; }
|
|
public abstract void UpdateQuality();
|
|
public abstract void UpdateSellIn();
|
|
|
|
}
|
|
} |