GildedRose-Refactoring-Kata/csharpcore/GildedRose/Abstraction/ICustomMethod.cs
Adefolarin Adeniji e625aed95a Updates
- Updated CustomMethod
- Updated implementation of update quality and sellin in derived classes
2021-08-27 15:01:36 +01:00

10 lines
221 B
C#

namespace GildedRose.Abstraction
{
public interface ICustomMethod
{
public int SellDaysGone { get; set; }
public abstract void UpdateQuality();
public abstract void UpdateSellIn();
}
}