示例#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;
 }
示例#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;
 }
示例#3
0
 public StopWorker(IFileStore fileStore, IModuleStore moduleStore, IPortalSettingsStore portalSettingsStore) : base(fileStore, moduleStore, portalSettingsStore)
 {
 }
 protected ModuleProcessingWorker(IFileStore fileStore, IModuleStore moduleStore, IPortalSettingsStore portalSettingsStore)
 {
     this.fileStore           = fileStore;
     this.moduleStore         = moduleStore;
     this.portalSettingsStore = portalSettingsStore;
 }
示例#5
0
 public DeleteWorker(IPortalSettingsStore portalSettingsStore)
 {
     this.portalSettingsStore = portalSettingsStore;
 }