-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Hi @delpher
I want to requires multiple steps before current step would be executed.
Is there a way to do this?
I try to add multiple RequiresAttribute, but it is not working.
For instance:
[Requires(typeof(ReadFileXMLStep))]
[Requires(typeof(GetPIDLoginStep))]
public class GetPIDStep : Step<DataContext>
{
protected override void Execute(DataContext context)
{
// All steps have executed
}
}Thanks!