Example #1
0
 public PlatformExportImportManager(ISecurityService securityService, IRoleManagementService roleManagementService, ISettingsManager settingsManager, IDynamicPropertyService dynamicPropertyService, IModuleCatalog moduleCatalog, ICacheManager <object> cacheManager,
                                    INotificationTemplateService notificationTemplateService, IAssetEntryService assetEntryService, IAssetEntrySearchService assetEntrySearchService)
 {
     _dynamicPropertyService      = dynamicPropertyService;
     _securityService             = securityService;
     _roleManagementService       = roleManagementService;
     _settingsManager             = settingsManager;
     _moduleCatalog               = moduleCatalog;
     _cacheManager                = cacheManager;
     _notificationTemplateService = notificationTemplateService;
     _manifestPartUri             = PackUriHelper.CreatePartUri(new Uri("Manifest.json", UriKind.Relative));
     _platformEntriesPartUri      = PackUriHelper.CreatePartUri(new Uri("PlatformEntries.json", UriKind.Relative));
     _assetEntryService           = assetEntryService;
     _assetEntrySearchService     = assetEntrySearchService;
 }
 public AssetEntryController(IAssetEntryService assetService, IAssetEntrySearchService assetSearchService)
 {
     _assetService       = assetService;
     _assetSearchService = assetSearchService;
 }