示例#1
0
 /// <summary>
 /// 执行外部操作的方法
 /// </summary>
 /// <param name="actionList">操作列表</param>
 /// <param name="delegateService">委托方法</param>
 protected void ExecteActionList(IList <ActionEntity> actionList,
                                 IDelegateService delegateService)
 {
     if (actionList != null && actionList.Count > 0)
     {
         ActionExecutor.ExecteActionList(actionList, delegateService);
     }
 }