Ejemplo n.º 1
0
        protected void OnActionEndRun(Routine action)
        {
            if (actionEndRun == null)
            {
                return;
            }

            ActionRunEventArgs eventArgs = new ActionRunEventArgs
            {
                action = action
            };

            actionEndRun(null, eventArgs);
        }
Ejemplo n.º 2
0
 private void Manager_actionBeginRun(object sender, ActionRunEventArgs e)
 {
     LogAction(e.action);
 }