public PerspectivesController(IPerspectiveService perspectiveService, IPerspectiveCommandService perspectiveCommandService, ITourQueryService tourQueryService, ICommentCommandService commentCommandService, ISEOToolStaticPageQueryService seoToolStaticPageQueryService)
 {
     _perspectiveService            = perspectiveService;
     _perspectiveCommandService     = perspectiveCommandService;
     _tourQueryService              = tourQueryService;
     _commentCommandService         = commentCommandService;
     _seoToolStaticPageQueryService = seoToolStaticPageQueryService;
 }
 public PerspectivesController(IPerspectiveService perspectiveService, IPerspectiveCommandService perspectiveCommandService, ITourQueryService tourQueryService, ICommentCommandService commentCommandService, ISEOToolStaticPageQueryService seoToolStaticPageQueryService)
 {
     _perspectiveService = perspectiveService;
     _perspectiveCommandService = perspectiveCommandService;
     _tourQueryService = tourQueryService;
     _commentCommandService = commentCommandService;
     _seoToolStaticPageQueryService = seoToolStaticPageQueryService;
 }
示例#3
0
 public ProblemController(
     IProblemQueryService problemQueryService,
     ICommentCommandService commentCommandService,
     IProblemCommandService problemCommandService,
     IAuthenticationService authenticationService)
 {
     _problemQueryService = problemQueryService;
     _commentCommandService = commentCommandService;
     _problemCommandService = problemCommandService;
     _authenticationService = authenticationService;
 }
示例#4
0
 public DiscussionController(
     IDiscussionQueryService discussionQueryService,
     ICommentCommandService commentCommandService,
     IDiscussionCommandService discussionCommandService,
     IAuthenticationService authenticationService,
     ILogger logger)
 {
     this._discussionQueryService = discussionQueryService;
     this._discussionComandService = discussionCommandService;
     this._commentCommandService = commentCommandService;
     this._logger = logger;
 }
示例#5
0
 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;
 }
示例#7
0
 public CommentsController(ICommentService commentService, ICommentCommandService commentCommandService)
 {
     _commentService        = commentService;
     _commentCommandService = commentCommandService;
 }