Exemplo n.º 1
0
 public static WorkflowOptions UnregisterActivityType <T>(this WorkflowOptions options)
 {
     return(options.UnregisterActivityType(typeof(T)));
 }
Exemplo n.º 2
0
 public static bool IsActivityRegistered <T>(this WorkflowOptions options)
 {
     return(options.IsActivityRegistered(typeof(T)));
 }
Exemplo n.º 3
0
 public static WorkflowOptions RegisterActivity <T, TDriver>(this WorkflowOptions options)
 {
     return(options.RegisterActivity(typeof(T), typeof(TDriver)));
 }