Esempio n. 1
0
 public StandardizedController(IAuthorizationService authorizationService,
                               IStandardizedOutputService standardizedOutputService,
                               ICatalogService catalogService,
                               IEnumMappingService enumMappingService,
                               ICommonTCMService commonTCMService)
     : base(authorizationService, enumMappingService, CONTROLLER_NAME)
 {
     _authorizationService      = authorizationService;
     _enumMappingService        = enumMappingService;
     _standardizedOutputService = standardizedOutputService;
     _cacheService     = CacheStorageFactory.Current;
     _catalogService   = catalogService;
     _commonTCMService = commonTCMService;
 }
Esempio n. 2
0
 public OutcomesController(IOutcomesService outcomesService,
                           ITcmUniverseService tcmUniverseService,
                           ILinkPredefinedIndicatorService linkPredefinedIndicatorService,
                           ICommonTCMService commonTCMService,
                           ICatalogService catalogService,
                           IResultsMatrixRepository resultsMatrixRepository,
                           IGenericRepository <Operation> opRep)
 {
     _outcomesService                = outcomesService;
     _tcmUniverseService             = tcmUniverseService;
     _linkPredefinedIndicatorService = linkPredefinedIndicatorService;
     _commonTCMService               = commonTCMService;
     _resultsMatrixRepository        = resultsMatrixRepository;
     _viewModelMapperHelper          = new ViewModelMapperHelper(catalogService, null);
     _operationRepository            = opRep;
 }
Esempio n. 3
0
 public ComponentsSaveController(
     IComponentService componentService, ICommonTCMService commonTCMService)
 {
     _componentService = componentService;
     _commonTCMService = commonTCMService;
 }