mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 08:37:28 +08:00
34 lines
967 B
C#
34 lines
967 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using OpenAuth.App;
|
|
using OptimaJet.Workflow.Core.Model;
|
|
using OptimaJet.Workflow.Core.Runtime;
|
|
|
|
namespace OpenAuth.Mvc.Controllers
|
|
{
|
|
public class WorkflowActionProvider :IWorkflowActionProvider
|
|
{
|
|
private ModuleManagerApp _app;
|
|
|
|
public WorkflowActionProvider()
|
|
{
|
|
_app = AutofacExt.GetFromFac<ModuleManagerApp>();
|
|
}
|
|
public void ExecuteAction(string name, ProcessInstance processInstance, WorkflowRuntime runtime, string actionParameter)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool ExecuteCondition(string name, ProcessInstance processInstance, WorkflowRuntime runtime, string actionParameter)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<string> GetActions()
|
|
{
|
|
return new List<string>{"ok"};
|
|
}
|
|
}
|
|
} |