void ICommand.Execute(object parameter)
        {
            if (parameter != null)
            {
                throw new ArgumentException();
            }

            BootStrapper.ExecuteViewCommand(this.executeMethodName, this.ViewModel);
        }