using System; namespace csharp.Strategy { interface ICategoryStrategy { void Update(Item item); } }