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(); } 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 GetActions() { return new List{"ok"}; } } }