namespace Blue
{
///
/// 默认Command 处理类
///
public class DefaultCommandHandler : ICommandHandler
{
public void ExcuteCommand(ICommand command)
{
command.OnExcute();
}
public void ExcuteCommand() where T : ICommand, new()
{
ExcuteCommand(new T());
}
}
}