public LinkIndicatorController(
     ILinkPredefinedIndicatorService linkPredefinedIndicatorService,
     IResultFrameworkService resultFrameworkService) : base()
 {
     _linkPredefinedIndicatorService = linkPredefinedIndicatorService;
     _resultFrameworkService         = resultFrameworkService;
 }
Beispiel #2
0
 public FrameworkController(IAuthorizationService authorizationService,
                            IResultFrameworkService resultFrameworkService,
                            ICatalogService catalogService,
                            IEnumMappingService enumMappingService)
     : base(authorizationService, enumMappingService, CONTROLLER_NAME)
 {
     _authorizationService   = authorizationService;
     _enumMappingService     = enumMappingService;
     _resultFrameworkService = resultFrameworkService;
     _cacheService           = CacheStorageFactory.Current;
     _catalogService         = catalogService;
 }