Implementing WorkFlow in MVC 5

I need to implement Workflow in MVC5 . Even though I read the article about workflow, I didn't understand how to integrate workflow and MVC5. I am very new to workflow and have little knowledge of MVC5.

My project flow:

  • List item
  • Application form for viewing.
  • User sends request
  • The request goes to the Approver1 queue.
  • If Approver1 approves the request, the request is moved to the Approver2 queue.
  • Both approvers can approve and deny the request.

can anyone post an example:

  • how to create a workflow and
  • how to interact with MVC and
  • how to display workflow status to user?
+3


source to share


1 answer


It sounds like you want to implement a workflow architecture like Windows Workflow Foundation. And then implement an MVC application to schedule / execute / monitor the execution of workflows. This is a very big topic to cover. I would start by looking at this link , which provides some examples of workflow implementations.



+2


source







All Articles