namespace Agility.Core { /// /// A do-nothing pass-through command. /// public class TestCommand : ICommand { public bool Execute(IContext context) { ; // do nothing return false; } } }