Got a simple "Newbie" kind of a question.
I would like to "share" an InArgument between 2 Workflows. Let's consider for a moment the following classic OOP scenario, you got 2 classes with the same property, a reasonable OOP approach would be to create a base class and implement this property once.
When you create a new WorkFlow project, you got a xaml file and your cs is auto-generated. I would like to be able to inherited from an activity that will specify that InArgument and make the WorkFlow show it's property in it's Argument designer. With this approach I should be able to define an InArgument once in an activity and enforce derived WF to have this argument.
Does it make sense?
Consider that this suppose to be part of a framework, I would like my framework user to do the minimum and I still wish him to be able to use a deisgner (using only CodeActivities is unreasonable).
How can I accomplish it?
Ariel