From 22396c6ce2cfa17f4a41618091edcb391f87f9f4 Mon Sep 17 00:00:00 2001 From: Code Ninja Date: Sun, 8 Sep 2024 16:15:40 +0100 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f653e72..8271bad 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Simple Workflow framework in .Net ![Abscus.Design](images/abscus.design.png) ### Concept -- `Workflow Template` defines a sequence of task and transtions linked to an entity of interest. +- `Workflow Template` defines a sequence of tasks linked to an action on entity of interest. - `Task` is an unit of work that needs to be completed and can have an outcome associated upon completion. - `Workflow Instance` is actual execution of workflow template triggered by an action on the instance of associated entity. Instance persists the current state of the workflow for the entity instance. - Sequences of Tasks could be configured with multiple `transitions` with triggers driving different levels of branching. @@ -16,3 +16,5 @@ Simple Workflow framework in .Net ### Example Workflow ![Abscus.Example](images/abscus.example.png) +### Implementation +For implementation - Please visit wiki pages for details.