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