public void RegisterImporter(string identifier, ImporterCreatorCallback callback) { this.registeredImporters.Add(identifier, new ImporterService.ImporterEntry(callback)); }
public ImporterEntry(ImporterCreatorCallback callback) { this.callback = callback; }