Introduction - If you have any usage issues, please Google them yourself
public sealed partial class Workflow1: SequentialWorkflowActivity
{
public Workflow1()
{
InitializeComponent()
}
private void PayMe_ExecuteCode(object sender, EventArgs e)
{
Console.WriteLine("Expense report approved")
}
private void Panic_ExecuteCode(object sender, EventArgs e)
{
Console.WriteLine("Expense report rejected")
}
private void ReRoute_ExecuteCode(object sender, EventArgs e)
{
Console.WriteLine("Approval timeout- ask someone else!")
}
}