Example #1
0
        public ICommand CreateCommand(ITypeResolver resolver)
        {
            if (Command.Delegate != null)
            {
                return(new DelegateCommand(Command.Delegate));
            }

            if (resolver.Resolve(Command.CommandType) is ICommand command)
            {
                return(command);
            }

            throw CommandParseException.CouldNotCreateCommand(Command.CommandType);
        }