views:

41

answers:

1

Hello everyone,

I would like to achieve the following: all the workflows created should have the same structure (validation, execution, save results), and all the developers should implement those three stages (maybe leaving it empty). Similar to inheritance with abstract methods.

Any ideas?

+1  A: 

Create a custom activity with those three steps as properties and use that as the base for all your workflows.

Maurice
could I expose that in a WCF service? each of them with different contract?
Pablo Castilla
I don't see a reason why that wouldn't work.
Maurice