mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 06:21:29 +00:00
19 lines
371 B
C#
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
|
|
}
|
|
}
|