Пример #1
0
 public void FireCallbackWorkflowEvent(WorkflowMessageEventArgs args)
 {
     if (CallbackWorkflowEvent != null)
     {
         CallbackWorkflowEvent.Invoke(args);
     }
 }
Пример #2
0
 public void FireInvokeWorkflowEvent(WorkflowMessageEventArgs args)
 {
     if (InvokeWorkflowEvent != null)
     {
         InvokeWorkflowEvent.Invoke(args);
     }
 }