Ejemplo n.º 1
0
 public ModuleService(IModuleStore moduleStore, IFileStore fileStore, IPortalSettingsStore portalSettingsStore, IUserDataStore userDataStore, ISyrinxCamundaClientService camundaClient)
 {
     this.moduleStore         = moduleStore;
     this.fileStore           = fileStore;
     this.portalSettingsStore = portalSettingsStore;
     this.userDataStore       = userDataStore;
     this.camundaClient       = camundaClient;
 }
Ejemplo n.º 2
0
 public HealthChecksService(ISyrinxCamundaClientService camundaService, IMemoryCacheService memoryCacheService, IPortalSettingsStore portalSettingsStore,
                            IPortalSettingsService portalSettingsService, IModuleStore moduleStore)
 {
     this.camundaService        = camundaService;
     this.memoryCacheService    = memoryCacheService;
     this.portalSettingsStore   = portalSettingsStore;
     this.portalSettingsService = portalSettingsService;
     this.moduleStore           = moduleStore;
 }
 public CamundaDeploymentService(CamundaDeploymentParameters camundaDeploymentParameters, IOperationService operationService, ISyrinxCamundaClientService camundaClient)
 {
     this.camundaDeploymentParameters = camundaDeploymentParameters;
     this.operationService            = operationService;
     this.camundaClient = camundaClient;
 }
Ejemplo n.º 4
0
 public StopWorker(IModuleStore moduleStore, ISyrinxCamundaClientService camundaClient)
 {
     this.moduleStore   = moduleStore;
     this.camundaClient = camundaClient;
 }
Ejemplo n.º 5
0
 public NoteFolderService(INoteFolderStore noteFolderStore, ISyrinxCamundaClientService camundaClient)
 {
     this.noteFolderStore = noteFolderStore;
     this.camundaClient   = camundaClient;
 }