namespace Blue { public class QueryDefault_Hand : ICommandHandler { public void ExcuteCommand(ICommand command) { command.OnExcute(); } public void ExcuteCommand<T>() where T : ICommand, new() { ExcuteCommand(new T()); } } }