@Model.Claim.Description
+ ++ A compact ASP.NET Core demo that highlights sequential steps, conditional routing, + parallel branches, merge logic, fault tolerance, and execution snapshots stored in SQLite. +
+Create the first claim to see the pipeline, branching, and stored execution tree in action.
+ Create claim +| Customer | +Policy | +Type | +Status | +Decision | +Payout | ++ |
|---|---|---|---|---|---|---|
|
+ @item.CustomerName
+ @item.CreatedAtUtc.ToLocalTime()
+ |
+ @item.PolicyNumber | +@item.ClaimType | +@item.Status | +@item.FinalDecisionType | +@item.ApprovedPayoutAmount.ToString("C") | ++ Open + | +
The form runs the pipeline immediately and stores both business data and execution details.
+