/**
  * DoActionTransactionEvent constructor.
  *
  * @param string $managerName
  * @param string $entryId
  * @param string $actionName
  */
 public function __construct($managerName, $entryId, $actionName)
 {
     $this->entryId = $entryId;
     parent::__construct($managerName, $actionName);
 }
 /**
  * InitializeTransactionEvent constructor.
  *
  * @param string $managerName
  * @param string $workflowName
  * @param string $actionName
  */
 public function __construct($managerName, $workflowName, $actionName)
 {
     $this->workflowName = $workflowName;
     parent::__construct($managerName, $actionName);
 }