public PerspectivesController(IPerspectiveService perspectiveService, IPerspectiveCommandService perspectiveCommandService, ITourQueryService tourQueryService, ICommentCommandService commentCommandService, ISEOToolStaticPageQueryService seoToolStaticPageQueryService) { _perspectiveService = perspectiveService; _perspectiveCommandService = perspectiveCommandService; _tourQueryService = tourQueryService; _commentCommandService = commentCommandService; _seoToolStaticPageQueryService = seoToolStaticPageQueryService; }
public ProblemController( IProblemQueryService problemQueryService, ICommentCommandService commentCommandService, IProblemCommandService problemCommandService, IAuthenticationService authenticationService) { _problemQueryService = problemQueryService; _commentCommandService = commentCommandService; _problemCommandService = problemCommandService; _authenticationService = authenticationService; }
public DiscussionController( IDiscussionQueryService discussionQueryService, ICommentCommandService commentCommandService, IDiscussionCommandService discussionCommandService, IAuthenticationService authenticationService, ILogger logger) { this._discussionQueryService = discussionQueryService; this._discussionComandService = discussionCommandService; this._commentCommandService = commentCommandService; this._logger = logger; }
public BlogController( IProblemQueryService problemQueryService, ICommentCommandService commentCommandService, IProblemCommandService problemCommandService, IBlogQueryService blogQueryService, IBlogCommandService blogCommandService, IAuthenticationService authenticationService) { this._problemQueryService = problemQueryService; this._commentCommandService = commentCommandService; this._problemCommandService = problemCommandService; this._blogCommandService = blogCommandService; this._blogQueryService = blogQueryService; this._authenticationService = authenticationService; }
public CommentsController(ICommentService commentService, ICommentCommandService commentCommandService) { _commentService = commentService; _commentCommandService = commentCommandService; }