namespace Blue { public interface ICommandHandler { void ExcuteCommand(ICommand command); void ExcuteCommand() where T:ICommand,new(); } }