public PageViewContextRequestHandler(
     IProjectService projectService,
     IPageService pageService,
     IAuthorizationService authorizationService,
     IContentHistoryQueries historyQueries
     )
 {
     _projectService       = projectService;
     _pageService          = pageService;
     _authorizationService = authorizationService;
     _historyQueries       = historyQueries;
 }
コード例 #2
0
 public ContentHistoryController(
     IProjectService projectService,
     IContentHistoryQueries historyQueries,
     IContentHistoryCommands historyCommands,
     IAuthorizationService authorizationService,
     ILogger <ContentHistoryController> logger
     )
 {
     ProjectService       = projectService;
     HistoryQueries       = historyQueries;
     HistoryCommands      = historyCommands;
     AuthorizationService = authorizationService;
     Log = logger;
 }