GildedRose-Refactoring-Kata/csharpcore/GildedRose/Abstraction/ICustomMethod.cs
Adefolarin Adeniji e692f0d55b Updates
- Added reflection to program.cs
-
2021-08-27 16:39:19 +01:00

11 lines
222 B
C#

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