Day 7 with Workflows — Pass an input argument to your workflow
All the workflow definitions we’ve seen so far, in this series, were self-contained. They were not parameterized. But we often need our business processes to take arguments (the ID of an order, the details of the order, etc.), so that we can treat those input values and do something about them. That’s where workflow input parameters become useful!
Let’s start with a simple greeting message that we want to customize with a firstname and lastname.
Read more...