public void Selected()
    {
        InstructionManager.Instance.Instruction = _instruction;

        InstructionSelected?.Invoke(this, new InstructionSelectionEventArgs(_instruction));
    }
 private void SelectInstructionMenuController_InstructionSelected(object sender, InstructionSelectionEventArgs e)
 {
     InstructionSelected?.Invoke(sender, e);
 }