public Executor(IVariableAction variableAction,
                 IMethodAction methodAction,
                 IAssertAction assertAction)
 {
     _variableAction = variableAction;
     _methodAction   = methodAction;
     _assertAction   = assertAction;
 }
        //Form connection between windows (Subcribe function)
        private void WireEventHandlers(IMethodAction action)
        {
            UpdateEventHandler handler = new UpdateEventHandler(OnHandler1);

            action.newNameEvent += handler;
        }