GildedRose-Refactoring-Kata/csharp/StrategyPatternExample/ICategoryStrategy.cs
israel f6db7aa935 · Insert comments.
· DoNothingStrategy created.
2017-10-20 13:14:29 +01:00

13 lines
246 B
C#

using System;
namespace csharp.StrategyPatternExample
{
/// <summary>
/// Interface that every category strategy will have to implement.
/// </summary>
interface ICategoryStrategy
{
void Update(Item item);
}
}