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

19 lines
371 B
C#

using System;
namespace csharp.StrategyPatternExample.Strategy
{
/// <summary>
/// Implements the strategy; Do nothing. No action is implemented.
/// </summary>
internal class DoNothingStrategy : ICategoryStrategy
{
#region Methods
public void Update(Item item)
{
}
#endregion
}
}