public WorkflowServersController(
     IWorkflowServerStore store,
     IAuthorizationService authorizationService,
     IIdGenerator idGenerator,
     INotifier notifier,
     IHtmlLocalizer <WorkflowDefinitionsController> localizer)
 {
     _store = store;
     _authorizationService = authorizationService;
     _idGenerator          = idGenerator;
     _notifier             = notifier;
     T = localizer;
 }
 public StoreBasedWorkflowServerProvider(IWorkflowServerStore store) => _store = store;